-
Notifications
You must be signed in to change notification settings - Fork 125
42 lines (39 loc) · 1.08 KB
/
lcm-integration-e2e.yaml
File metadata and controls
42 lines (39 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: LCM Integration E2E Pipeline
on:
workflow_call:
inputs:
AUTO_MERGE:
default: true
required: false
type: boolean
description: Must be set here in order to use in if condition at job level.
base_branch:
required: true
type: string
description: The base branch to compare against for detecting changes.
pr_number:
required: true
type: string
jobs:
LCM-integration-e2e-tests:
runs-on:
group: infra1-runners-arc
labels: runners-rxa-xlarge
permissions:
id-token: write
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: 'true'
token: ${{ secrets.TOKEN_GITHUB_YENKINS }}
- name: Build local image
run: |
bundle exec rake -f lcm.rake test:docker:build
- name: Build gems
run: |
bundle exec rake -f lcm.rake test:docker:bundle
- name: Run integrated tests
run: |
bundle exec rake -f lcm.rake test:docker:integration-e2e