Skip to content

Commit fe61e4f

Browse files
authored
Fixing MacOS 13 assemble workflows (#15747)
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
1 parent 375dda3 commit fe61e4f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/assemble.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,11 @@ jobs:
3030
- name: Setup docker (missing on MacOS)
3131
id: setup_docker
3232
if: runner.os == 'macos'
33+
continue-on-error: true
3334
run: |
34-
exit 0;
35+
brew install docker colima coreutils
36+
gtimeout 15m colima start
37+
shell: bash
3538
- name: Run Gradle (assemble)
3639
if: runner.os == 'macos' && steps.setup_docker.outcome != 'success'
3740
run: |
@@ -45,4 +48,4 @@ jobs:
4548
- name: Run Gradle (assemble)
4649
if: runner.os == 'macos' && steps.setup_docker.outcome == 'success'
4750
run: |
48-
exit 0;
51+
./gradlew assemble --parallel --no-build-cache -PDISABLE_BUILD_CACHE -Druntime.java=${{ matrix.java }}

0 commit comments

Comments
 (0)