We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6090a5d commit 4b3ca15Copy full SHA for 4b3ca15
.github/workflows/build_and_publish_test.yml
@@ -210,12 +210,9 @@ jobs:
210
timeout-minutes: 5
211
run: |
212
cd rapidyenc
213
- if [ "${{ matrix.arch }}" = "amd64" ]; then
214
- ./crossbuild_rapidyenc_darwin-amd64.sh || ./build_rapidyenc_linux-amd64.sh darwin
215
- fi
216
- if [ "${{ matrix.arch }}" = "arm64" ]; then
217
- ./build_rapidyenc_linux-arm64.sh darwin || ./build_rapidyenc_linux-amd64.sh darwin
218
+ # macOS builds natively - the build_rapidyenc_linux-amd64.sh script
+ # is actually a native build script (despite the misleading name)
+ ./build_rapidyenc_linux-amd64.sh darwin
219
220
# Run tests with race detector for supported platforms
221
- name: "Run race detector tests (amd64/linux only)"
0 commit comments