Skip to content

Commit 84a9cc3

Browse files
committed
try build
1 parent c227777 commit 84a9cc3

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: Build
22

33
on:
4-
push:
5-
branches:
6-
- 'feature/**'
7-
84
# Manual trigger build
95
workflow_dispatch:
106
inputs:

.github/workflows/tests.yml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,25 @@ jobs:
1616
secrets: inherit
1717

1818
# 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
2727

2828
# 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
3231
secrets: inherit
32+
# build-linux:
33+
# uses: ./.github/workflows/pipeline-build-linux.yml
34+
# needs: e2e-approve
35+
# secrets: inherit
3336

3437
e2e-linux-tests:
35-
needs: build-linux
38+
needs: build
3639
uses: ./.github/workflows/tests-e2e-linux.yml
3740
secrets: inherit

0 commit comments

Comments
 (0)