Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jherbel committed Nov 8, 2023
1 parent c66f3d2 commit 6e880e9
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,16 @@ jobs:

- run: cargo build --target ${{ matrix.type.target }}
working-directory: ${{ github.workspace }}/v2/robotmk/

check_success:
if: always()

runs-on: ubuntu-latest

needs:
- ci

steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
13 changes: 13 additions & 0 deletions .github/workflows/rcc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,16 @@ jobs:
with:
path: build
if-no-files-found: error

check_success:
if: always()

runs-on: ubuntu-latest

needs:
- build_and_test

steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
13 changes: 13 additions & 0 deletions .github/workflows/robotmk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,16 @@ jobs:
${{ github.workspace }}/v2/robotmk/target/x86_64-pc-windows-gnu/release/robotmk.exe
${{ github.workspace }}/v2/robotmk/target/x86_64-pc-windows-gnu/release/robotmk_agent.exe
if-no-files-found: error

check_success:
if: always()

runs-on: ubuntu-latest

needs:
- build_robotmk_from_source

steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}

0 comments on commit 6e880e9

Please sign in to comment.