Skip to content

Commit cee6012

Browse files
authored
Merge pull request #236 from fabinsch/all-green
ci check all jobs pass
2 parents 5e40b1c + 46022d7 commit cee6012

File tree

5 files changed

+71
-0
lines changed

5 files changed

+71
-0
lines changed

.github/workflows/ci-linux-osx-win-conda.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,3 +189,17 @@ jobs:
189189
shell: bash -l {0}
190190
run: |
191191
echo $(ccache -s)
192+
193+
check:
194+
if: always()
195+
name: check-ci-linux-osx-win-conda
196+
197+
needs:
198+
- build-with-conda
199+
200+
runs-on: Ubuntu-latest
201+
steps:
202+
- name: Decide whether the needed jobs succeeded or failed
203+
uses: re-actors/alls-green@release/v1
204+
with:
205+
jobs: ${{ toJSON(needs) }}

.github/workflows/ci-linux-ros.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,18 @@ jobs:
3232
# Run industrial_ci
3333
- uses: 'ros-industrial/industrial_ci@master'
3434
env: ${{ matrix.env }}
35+
36+
37+
check:
38+
if: always()
39+
name: check-ci-linux-ros
40+
41+
needs:
42+
- CI
43+
44+
runs-on: Ubuntu-latest
45+
steps:
46+
- name: Decide whether the needed jobs succeeded or failed
47+
uses: re-actors/alls-green@release/v1
48+
with:
49+
jobs: ${{ toJSON(needs) }}

.github/workflows/ci-osx-arm64-conda.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,17 @@ jobs:
7272
run: |
7373
cd $GITHUB_WORKSPACE/build
7474
cmake --build . --config ${{ matrix.build_type }} --target uninstall
75+
76+
check:
77+
if: always()
78+
name: check-ci-osx-arm64-conda
79+
80+
needs:
81+
- build-with-conda
82+
83+
runs-on: Ubuntu-latest
84+
steps:
85+
- name: Decide whether the needed jobs succeeded or failed
86+
uses: re-actors/alls-green@release/v1
87+
with:
88+
jobs: ${{ toJSON(needs) }}

.github/workflows/release-linux.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,17 @@ jobs:
8181
with:
8282
user: __token__
8383
password: ${{ secrets.PYPI_TOKEN }}
84+
85+
check:
86+
if: always()
87+
name: check-release-linux
88+
89+
needs:
90+
- build-wheel
91+
92+
runs-on: Ubuntu-latest
93+
steps:
94+
- name: Decide whether the needed jobs succeeded or failed
95+
uses: re-actors/alls-green@release/v1
96+
with:
97+
jobs: ${{ toJSON(needs) }}

.github/workflows/release-osx-win.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,3 +120,17 @@ jobs:
120120
with:
121121
user: __token__
122122
password: ${{ secrets.PYPI_TOKEN }}
123+
124+
check:
125+
if: always()
126+
name: release-osx-win
127+
128+
needs:
129+
- build-wheel
130+
131+
runs-on: Ubuntu-latest
132+
steps:
133+
- name: Decide whether the needed jobs succeeded or failed
134+
uses: re-actors/alls-green@release/v1
135+
with:
136+
jobs: ${{ toJSON(needs) }}

0 commit comments

Comments
 (0)