Skip to content

Commit

Permalink
WIP2
Browse files Browse the repository at this point in the history
  • Loading branch information
oldratlee committed Nov 22, 2023
1 parent 7b0b322 commit 8bdc6f8
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ jobs:
{"os": "ubuntu-latest"}
- |
{"os": "macos-11"}
- |
{"os": "macos-11", "deps": ["coreutils", "gnu-sed"]}
- |
{"os": "macos-latest"}
- |
{"os": "macos-latest", "deps": ["coreutils", "gnu-sed"]}
fail-fast: false
max-parallel: 64
name: Test on ${{ matrix.os_deps }}
Expand All @@ -26,8 +30,9 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- run: brew install coreutils gnu-sed
# https://github.com/orgs/community/discussions/27125#discussioncomment-3254720
- run: brew install ${{ join(fromJSON(matrix.os_deps).deps, ' ') }}
# https://docs.github.com/en/actions/learn-github-actions/variables#detecting-the-operating-system
# https://docs.github.com/en/actions/learn-github-actions/expressions
if: runner.os == 'macOS'
if: runner.os == 'macOS' && fromJSON(matrix.os_deps).deps[0] != null
- run: test-cases/integration-test.sh

0 comments on commit 8bdc6f8

Please sign in to comment.