@@ -21,12 +21,12 @@ jobs:
21
21
runs-on : ubuntu-latest
22
22
steps :
23
23
- uses : actions/checkout@v3
24
- - id : bazel_6
24
+ - id : bazel_7
25
25
run : echo "bazelversion=$(head -n 1 .bazelversion)" >> $GITHUB_OUTPUT
26
- - id : bazel_5
27
- run : echo "bazelversion=5.3.2 " >> $GITHUB_OUTPUT
26
+ - id : bazel_6
27
+ run : echo "bazelversion=6.4.0 " >> $GITHUB_OUTPUT
28
28
outputs :
29
- # Will look like ["<version from .bazelversion>", "5.3.2 "]
29
+ # Will look like ["<version from .bazelversion>", "6.4.0 "]
30
30
bazelversions : ${{ toJSON(steps.*.outputs.bazelversion) }}
31
31
32
32
matrix-prep-os :
@@ -67,18 +67,15 @@ jobs:
67
67
bzlmodEnabled : [true, false]
68
68
exclude :
69
69
# macos is expensive (billed at 10X) so don't test these
70
- - os : macos-latest
70
+ - os : macos-latest
71
71
folder : e2e/custom_registry
72
- - os : macos-latest
72
+ - os : macos-latest
73
73
folder : e2e/wasm
74
- - os : macos-latest
74
+ - os : macos-latest
75
75
folder : e2e/crane_as_registry
76
76
- os : macos-latest
77
- bazelversion : 5.3.2
77
+ bazelversion : 6.4.0
78
78
79
- # Don't test bzlmod with Bazel 5 (not supported)
80
- - bazelversion : 5.3.2
81
- bzlmodEnabled : true
82
79
# TODO: fix
83
80
- folder : e2e/custom_registry
84
81
bzlmodEnabled : true
@@ -116,9 +113,9 @@ jobs:
116
113
if : ${{ matrix.os == 'macos-latest' }}
117
114
uses : atomicjar/testcontainers-cloud-setup-action@main
118
115
with :
119
- wait : true
120
- token : ${{ secrets.TC_CLOUD_TOKEN }}
121
-
116
+ wait : true
117
+ token : ${{ secrets.TC_CLOUD_TOKEN }}
118
+
122
119
- name : Configure Remote Docker Host
123
120
if : ${{ matrix.os == 'macos-latest' }}
124
121
run : echo "DOCKER_HOST=$(grep 'tc.host' ~/.testcontainers.properties | cut -d '=' -f2 | xargs)" >> $GITHUB_ENV
@@ -129,7 +126,7 @@ jobs:
129
126
# Bazelisk will download bazel to here, ensure it is cached between runs.
130
127
XDG_CACHE_HOME : ~/.cache/bazel-repo
131
128
run : bazel --bazelrc=$GITHUB_WORKSPACE/.github/workflows/ci.bazelrc --bazelrc=.bazelrc test ${{ steps.set_bzlmod_flag.outputs.bzlmod_flag }} //...
132
-
129
+
133
130
test-auth :
134
131
runs-on : ubuntu-latest
135
132
steps :
0 commit comments