mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2024-11-28 05:45:48 +00:00
ci: avoid propagating bash errors immidiately
Signed-off-by: morguldir <morguldir@protonmail.com>
This commit is contained in:
parent
8dccc04b40
commit
1c1f300efe
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -139,6 +139,7 @@ jobs:
|
||||||
- name: Cache CI dependencies
|
- name: Cache CI dependencies
|
||||||
run: |
|
run: |
|
||||||
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
||||||
|
set +e # Don't exit on errors
|
||||||
ATTEMPTS=3
|
ATTEMPTS=3
|
||||||
SUCCESS=false
|
SUCCESS=false
|
||||||
while (( ATTEMPTS-- > 0 ))
|
while (( ATTEMPTS-- > 0 ))
|
||||||
|
@ -305,6 +306,7 @@ jobs:
|
||||||
SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
|
SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
|
||||||
|
|
||||||
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
||||||
|
set +e # Don't exit on errors
|
||||||
ATTEMPTS=3
|
ATTEMPTS=3
|
||||||
SUCCESS=false
|
SUCCESS=false
|
||||||
while (( ATTEMPTS-- > 0 ))
|
while (( ATTEMPTS-- > 0 ))
|
||||||
|
@ -345,6 +347,7 @@ jobs:
|
||||||
SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
|
SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
|
||||||
|
|
||||||
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
||||||
|
set +e # Don't exit on errors
|
||||||
ATTEMPTS=3
|
ATTEMPTS=3
|
||||||
SUCCESS=false
|
SUCCESS=false
|
||||||
while (( ATTEMPTS-- > 0 ))
|
while (( ATTEMPTS-- > 0 ))
|
||||||
|
@ -424,6 +427,7 @@ jobs:
|
||||||
- name: Build OCI image ${{ matrix.target }}
|
- name: Build OCI image ${{ matrix.target }}
|
||||||
run: |
|
run: |
|
||||||
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
||||||
|
set +e # Don't exit on errors
|
||||||
ATTEMPTS=3
|
ATTEMPTS=3
|
||||||
SUCCESS=false
|
SUCCESS=false
|
||||||
while (( ATTEMPTS-- > 0 ))
|
while (( ATTEMPTS-- > 0 ))
|
||||||
|
@ -446,6 +450,7 @@ jobs:
|
||||||
- name: Build debug OCI image ${{ matrix.target }}
|
- name: Build debug OCI image ${{ matrix.target }}
|
||||||
run: |
|
run: |
|
||||||
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
||||||
|
set +e # Don't exit on errors
|
||||||
ATTEMPTS=3
|
ATTEMPTS=3
|
||||||
SUCCESS=false
|
SUCCESS=false
|
||||||
while (( ATTEMPTS-- > 0 ))
|
while (( ATTEMPTS-- > 0 ))
|
||||||
|
|
2
.github/workflows/documentation.yml
vendored
2
.github/workflows/documentation.yml
vendored
|
@ -111,6 +111,7 @@ jobs:
|
||||||
- name: Cache CI dependencies
|
- name: Cache CI dependencies
|
||||||
run: |
|
run: |
|
||||||
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
||||||
|
set +e # Don't exit on errors
|
||||||
ATTEMPTS=3
|
ATTEMPTS=3
|
||||||
SUCCESS=false
|
SUCCESS=false
|
||||||
while (( ATTEMPTS-- > 0 ))
|
while (( ATTEMPTS-- > 0 ))
|
||||||
|
@ -136,6 +137,7 @@ jobs:
|
||||||
- name: Build documentation (book)
|
- name: Build documentation (book)
|
||||||
run: |
|
run: |
|
||||||
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
# attic nix binary cache server is very, very terribly flakey. nothing i can do to fix it other than retry multiple times here
|
||||||
|
set +e # Don't exit on errors
|
||||||
ATTEMPTS=3
|
ATTEMPTS=3
|
||||||
SUCCESS=false
|
SUCCESS=false
|
||||||
while (( ATTEMPTS-- > 0 ))
|
while (( ATTEMPTS-- > 0 ))
|
||||||
|
|
Loading…
Reference in a new issue