Skip to content

Commit

Permalink
macos-15 tests
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Jan 29, 2025
1 parent 294dc24 commit c45d4ac
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/repotests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: true
matrix:
node-version: ['23.x']
os: ['ubuntu-24.04', 'ubuntu-24.04-arm', 'windows-latest']
os: ['ubuntu-24.04', 'ubuntu-24.04-arm', 'windows-latest', 'macos-15']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -50,6 +50,10 @@ jobs:
curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.20.0/bazelisk-linux-arm64"
sudo mv bazelisk-linux-arm64 /usr/local/bin/bazel
chmod +x /usr/local/bin/bazel
- name: Install bazelisk - mac
if: matrix.os == 'macos-15'
run: |
brew install bazelisk
- name: Install bazelisk - windows
if: matrix.os == 'windows-latest'
run: choco install -y bazel
Expand All @@ -70,7 +74,7 @@ jobs:
packages: 'platform-tools'
- run: sdkmanager --uninstall "build-tools;30.0.3"
- uses: swift-actions/setup-swift@v2
if: matrix.os == 'ubuntu-24.04'
if: matrix.os == 'ubuntu-24.04' || matrix.os == 'macos-15'
with:
swift-version: '6.0'
- name: Set up Python
Expand Down Expand Up @@ -458,7 +462,7 @@ jobs:
CDXGEN_DEBUG_MODE=debug bin/cdxgen.js -p -r -t clojure repotests/ziggurat -o bomresults/bom-clj.json --fail-on-error
shell: bash
- name: repotests swift-markdown
if: matrix.os == 'ubuntu-24.04'
if: matrix.os == 'ubuntu-24.04' || matrix.os == 'macos-15'
run: |
CDXGEN_DEBUG_MODE=debug bin/cdxgen.js -p -r -t swift repotests/swift-markdown -o bomresults/bom-swift.json
CDXGEN_DEBUG_MODE=debug bin/cdxgen.js -p -r -t swift repotests/swift-markdown -o bomresults/bom-swift.json --profile research
Expand Down

0 comments on commit c45d4ac

Please sign in to comment.