Skip to content

Commit bfe1fcd

Browse files
[ci] add "run all ci" tag (#681)
* add "run all ci" tag * missed one workflow
1 parent f97070b commit bfe1fcd

9 files changed

+10
-10
lines changed

.github/workflows/hypersdk-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
hypersdk-unit-tests:
15-
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run unit') }}
15+
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run all ci') }}
1616
runs-on: ubuntu-latest
1717
timeout-minutes: 10
1818
steps:

.github/workflows/morpheusvm-load-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
morpheusvm-load-tests:
15-
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run load') }}
15+
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run all ci') }}
1616
strategy:
1717
matrix:
1818
level: [v1, v2, v3] # v4 is not supported

.github/workflows/morpheusvm-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
morpheusvm-release:
1717
# We build with 20.04 to maintain max compatibility: https://github.com/golang/go/issues/57328
1818
runs-on: ubuntu-20.04-32
19-
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/tags/v') || contains(github.event.pull_request.labels.*.name, 'run release') }}
19+
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/tags/v') || contains(github.event.pull_request.labels.*.name, 'run all ci') }}
2020
steps:
2121
- name: Git checkout
2222
uses: actions/checkout@v3

.github/workflows/morpheusvm-sync-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
morpheusvm-sync-tests:
15-
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run sync') }}
15+
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run all ci') }}
1616
runs-on:
1717
labels: ubuntu-20.04-32
1818
timeout-minutes: 25

.github/workflows/morpheusvm-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
morpheusvm-unit-tests:
15-
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run unit') }}
15+
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run all ci') }}
1616
runs-on:
1717
labels: ubuntu-20.04-32
1818
timeout-minutes: 10

.github/workflows/tokenvm-load-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
tokenvm-load-tests:
15-
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run load') }}
15+
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run all ci') }}
1616
strategy:
1717
matrix:
1818
level: [v1, v2, v3] # v4 is not supported

.github/workflows/tokenvm-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
token-wallet-release:
1717
runs-on: macos-latest-xl
18-
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/tags/v') || contains(github.event.pull_request.labels.*.name, 'run release') }}
18+
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/tags/v') || contains(github.event.pull_request.labels.*.name, 'run all ci') }}
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v3
@@ -43,7 +43,7 @@ jobs:
4343
tokenvm-release:
4444
# We build with 20.04 to maintain max compatibility: https://github.com/golang/go/issues/57328
4545
runs-on: ubuntu-20.04-32
46-
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/tags/v') || contains(github.event.pull_request.labels.*.name, 'run release') }}
46+
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/tags/v') || contains(github.event.pull_request.labels.*.name, 'run all ci') }}
4747
steps:
4848
- name: Git checkout
4949
uses: actions/checkout@v3

.github/workflows/tokenvm-sync-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
tokenvm-sync-tests:
15-
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run sync') }}
15+
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run all ci') }}
1616
runs-on:
1717
labels: ubuntu-20.04-32
1818
timeout-minutes: 25

.github/workflows/tokenvm-unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
tokenvm-unit-tests:
15-
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run unit') }}
15+
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run all ci') }}
1616
runs-on:
1717
labels: ubuntu-20.04-32
1818
timeout-minutes: 10

0 commit comments

Comments
 (0)