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

Use macOS runner for CLI test workflow in CI #466

Merged
merged 2 commits into from
Mar 10, 2023
Merged
Changes from 1 commit
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
Next Next commit
Use macOS runner for CLI test workflow in CI
nilsreichardt committed Mar 9, 2023
commit a9a4891a4101d3f8bffbb8f0e328e184d36c361e
7 changes: 6 additions & 1 deletion .github/workflows/cli_ci.yml
Original file line number Diff line number Diff line change
@@ -103,7 +103,12 @@ jobs:

test:
needs: changes
runs-on: ubuntu-latest
# Because we run our the tests for all packages for now, we need to use a
# macOS runner because we have Golden Tests which requires a macOS runner.
#
# When the Sharezone CLI supports filters for the test command (like
# `--only="tools/sz_repo_cli"`), we can change this to a Linux runner.
runs-on: macos-latest
if: ${{ needs.changes.outputs.changesFound == 'true' }}
steps:
- uses: actions/checkout@v3