Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ci.yaml #12

Merged
merged 5 commits into from
Aug 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,26 @@ jobs:
strategy: ${{steps.load.outputs.strategy}}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- id: load
run: echo "::set-output name=strategy::$(echo $(cat strategy.json))"
run: echo "strategy=$(echo $(cat strategy.json))" >> $GITHUB_OUTPUT

canary:
needs: [setup]
strategy: ${{fromJson(needs.setup.outputs.strategy)}}
runs-on: ${{matrix.os}}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# Choose colcon-notification for a canary build. It has colcon
# dependencies and debian patches, so exercieses a fair amount of the
# CI action features.
repository: colcon/colcon-notification
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.python}}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: colcon_ci
- uses: ./colcon_ci/