We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5e474c commit f39dda7Copy full SHA for f39dda7
2 files changed
.github/workflows/posix.yml
@@ -102,6 +102,12 @@ jobs:
102
build_lib "$PLAT" "$INTERFACE64" "0"
103
fi
104
105
+ - name: Setup tmate session
106
+ if: ${{ failure() }}
107
+ uses: mxschmitt/action-tmate@v3
108
+ with:
109
+ limit-access-to-actor: true
110
+
111
- name: Build and test wheel
112
run: |
113
if [[ "$NIGHTLY" = "true" ]]; then
tools/build_steps.sh
@@ -170,7 +170,7 @@ function do_build_lib {
170
CFLAGS="$CFLAGS -fvisibility=protected -Wno-uninitialized" \
171
make BUFFERSIZE=20 DYNAMIC_ARCH=1 \
172
USE_OPENMP=0 NUM_THREADS=64 \
173
- BINARY=$bitness $interface_flags $target_flags
+ BINARY=$bitness $interface_flags $target_flags > /dev/null
174
make PREFIX=$BUILD_PREFIX $interface_flags install
175
popd
176
stop_spinner
0 commit comments