This repository was archived by the owner on Dec 12, 2024. It is now read-only.
File tree 1 file changed +6
-10
lines changed
1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -116,14 +116,6 @@ jobs:
116
116
needs : package_artifact
117
117
strategy :
118
118
matrix :
119
- target :
120
- [
121
- aarch64_apple_darwin,
122
- x86_64_apple_darwin,
123
- x86_64_unknown_linux_gnu,
124
- x86_64_unknown_linux_musl,
125
- ]
126
- os : [macos-latest, macos-12, ubuntu-latest, ubuntu-latest]
127
119
include :
128
120
- target : aarch64_apple_darwin
129
121
os : macos-latest
@@ -148,10 +140,15 @@ jobs:
148
140
distribution : " adopt"
149
141
java-version : " 11"
150
142
- name : Run tests on macOS and Ubuntu
151
- if : ${{ matrix.os != 'ubuntu-latest' || matrix. target != 'x86_64_unknown_linux_musl' }}
143
+ if : ${{ matrix.target != 'x86_64_unknown_linux_musl' }}
152
144
run : |
153
145
cd bound/kt
154
146
mvn '-Dtest=SystemArchitectureTest#can load shared library' test
147
+ - name : Install Docker
148
+ if : ${{ matrix.target == 'x86_64_unknown_linux_musl' }}
149
+ run : |
150
+ sudo apt-get update
151
+ sudo apt-get install -y docker.io
155
152
- name : Run tests on Alpine for x86_64_unknown_linux_musl
156
153
if : ${{ matrix.target == 'x86_64_unknown_linux_musl' }}
157
154
run : |
@@ -160,7 +157,6 @@ jobs:
160
157
apk update && apk add openjdk11 && apk add maven && \
161
158
cd bound/kt && \
162
159
mvn '-Dtest=SystemArchitectureTest#can load shared library' test"
163
-
164
160
publish_artifact :
165
161
runs-on : ubuntu-latest
166
162
needs : test_shared_libraries
You can’t perform that action at this time.
0 commit comments