File tree Expand file tree Collapse file tree 2 files changed +15
-16
lines changed Expand file tree Collapse file tree 2 files changed +15
-16
lines changed Original file line number Diff line number Diff line change 1
1
name : Build
2
2
3
3
on :
4
- push :
5
- branches :
6
- - ' feature/**'
7
-
8
4
# Manual trigger build
9
5
workflow_dispatch :
10
6
inputs :
Original file line number Diff line number Diff line change @@ -16,22 +16,25 @@ jobs:
16
16
secrets : inherit
17
17
18
18
# E2E Approve
19
- e2e-approve :
20
- runs-on : ubuntu-latest
21
- timeout-minutes : 60
22
- if : startsWith(github.ref_name, 'e2e/')
23
- environment : ${{ startsWith(github.ref_name, 'e2e/') && 'e2e-approve' || 'staging' }}
24
- name : Approve E2E tests
25
- steps :
26
- - uses : actions/checkout@v4
19
+ # e2e-approve:
20
+ # runs-on: ubuntu-latest
21
+ # timeout-minutes: 60
22
+ # if: startsWith(github.ref_name, 'e2e/')
23
+ # environment: ${{ startsWith(github.ref_name, 'e2e/') && 'e2e-approve' || 'staging' }}
24
+ # name: Approve E2E tests
25
+ # steps:
26
+ # - uses: actions/checkout@v4
27
27
28
28
# E2E Docker
29
- build-linux :
30
- uses : ./.github/workflows/pipeline-build-linux.yml
31
- needs : e2e-approve
29
+ build :
30
+ uses : ./.github/workflows/build.yml
32
31
secrets : inherit
32
+ # build-linux:
33
+ # uses: ./.github/workflows/pipeline-build-linux.yml
34
+ # needs: e2e-approve
35
+ # secrets: inherit
33
36
34
37
e2e-linux-tests :
35
- needs : build-linux
38
+ needs : build
36
39
uses : ./.github/workflows/tests-e2e-linux.yml
37
40
secrets : inherit
You can’t perform that action at this time.
0 commit comments