File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 3838 - uses : actions/checkout@v4
3939
4040 - name : run build script
41- run : cd $GITHUB_WORKSPACE && ./scripts/ci_build_mac-amd64.sh
41+ run : cd $GITHUB_WORKSPACE && ./scripts/ci_build_mac-amd64.sh --allowed-final-target-build-attempts=8 --seconds-between-final-target-build-attempts=2
4242
4343 - uses : actions/upload-artifact@v4
4444 with :
5353 - uses : actions/checkout@v4
5454
5555 - name : run build script
56- run : cd $GITHUB_WORKSPACE && bash ./scripts/ci_build_mac-arm64.sh
56+ run : cd $GITHUB_WORKSPACE && bash ./scripts/ci_build_mac-arm64.sh --allowed-final-target-build-attempts=8 --seconds-between-final-target-build-attempts=2
5757
5858 - uses : actions/upload-artifact@v4
5959 with :
Original file line number Diff line number Diff line change @@ -9,6 +9,5 @@ set -xeuo pipefail
99OSCDEPS_BUILD_ALWAYS=ON ./scripts/build.py \
1010 --osx-architectures=x86_64 \
1111 --osx-deployment-target=14.5 \
12- --allowed-final-target-build-attempts=8 \
13- --seconds-between-final-target-build-attempts=2
12+ " $@ "
1413
Original file line number Diff line number Diff line change @@ -9,6 +9,5 @@ set -xeuo pipefail
99OSCDEPS_BUILD_ALWAYS=ON ./scripts/build.py \
1010 --osx-architectures=arm64 \
1111 --osx-deployment-target=14.5 \
12- --allowed-final-target-build-attempts=8 \
13- --seconds-between-final-target-build-attempts=2
12+ " $@ "
1413
Original file line number Diff line number Diff line change @@ -11,4 +11,5 @@ set -xeuo pipefail
1111export OSCDEPS_BUILD_ALWAYS=${OSCDEPS_BUILD_ALWAYS:- ON}
1212
1313# Run buildscript under virtual desktop with `xvfb-run` (for UI tests)
14- CC=gcc-12 CXX=g++-12 OSC_BUILD_CONCURRENCY=$( nproc) xvfb-run ./scripts/build.py
14+ CC=gcc-12 CXX=g++-12 OSC_BUILD_CONCURRENCY=$( nproc) xvfb-run ./scripts/build.py " $@ "
15+
You can’t perform that action at this time.
0 commit comments