File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -84,13 +84,12 @@ jobs:
8484 echo "platform=${platform}" >> "${GITHUB_OUTPUT}"
8585 echo "Detected platform: ${platform}"
8686
87- - name : Build precompiled candidate artifact (no preflight/ runtime checks)
87+ - name : Build precompiled candidate artifact (runtime checks enabled )
8888 shell : bash
8989 run : |
9090 ./bin/release-precompiled-artifacts \
9191 --platform "${{ steps.platform.outputs.platform }}" \
92- --skip-preflight \
93- --skip-runtime-checks
92+ --skip-preflight
9493
9594 - name : Upload candidate artifacts
9695 uses : actions/upload-artifact@v4
@@ -108,7 +107,7 @@ jobs:
108107 steps :
109108 - uses : actions/checkout@v4
110109
111- - name : Build musl precompiled candidate artifact (Alpine container)
110+ - name : Build musl precompiled candidate artifact (Alpine container, runtime checks enabled )
112111 run : |
113112 docker run --rm \
114113 -v "${PWD}:/workspace" \
@@ -122,7 +121,7 @@ jobs:
122121 libclang_path="$(dirname "$(find /usr/lib -name libclang.so | head -n1)")"
123122 export LIBCLANG_PATH="${libclang_path}"
124123 bundle install
125- ./bin/release-precompiled-artifacts --platform "${platform}" --skip-preflight --skip-runtime-checks
124+ ./bin/release-precompiled-artifacts --platform "${platform}" --skip-preflight
126125 '
127126
128127 - name : Upload candidate artifacts
You can’t perform that action at this time.
0 commit comments