Skip to content

Commit

Permalink
add linux variant for bzlmod e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsky committed Aug 31, 2024
1 parent c1e900f commit bcdad6b
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ jobs:
bazelisk-version: 1.x
- uses: actions/checkout@v4
- run: bazel test --test_output=all //Tests/AppStoreConnectTests
bzlmod-e2e:
name: Bzlmod end-to-end test
bzlmod-e2e-macOS:
runs-on: macos-14
steps:
- uses: bazel-contrib/setup-bazel@0.8.5
Expand All @@ -66,3 +65,18 @@ jobs:
- uses: actions/checkout@v4
- run: bazel build //...
working-directory: Examples/bzlmod
bzlmod-e2e-linux:
runs-on: ubuntu-latest
strategy:
matrix:
tag: ['5.9']
container:
image: swift:${{ matrix.tag }}-focal
steps:
- uses: bazel-contrib/setup-bazel@0.8.5
with:
bazelisk-cache: true
bazelisk-version: 1.x
- uses: actions/checkout@v4
- run: bazel build //...
working-directory: Examples/bzlmod

0 comments on commit bcdad6b

Please sign in to comment.