Enable all CI build jobs for tag releases, don't allow Windows failures

This commit is contained in:
timvisee 2023-01-30 19:07:05 +01:00
parent cc2061ad7d
commit 6c3129a8b0
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172

View File

@ -80,6 +80,7 @@ build-x86_64-linux-musl:
stage: build stage: build
only: only:
- master - master
- /^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/
needs: [] needs: []
variables: variables:
TARGET: x86_64-unknown-linux-musl TARGET: x86_64-unknown-linux-musl
@ -103,6 +104,7 @@ build-armv7-linux-gnu:
image: ubuntu image: ubuntu
only: only:
- master - master
- /^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/
needs: [] needs: []
variables: variables:
TARGET: armv7-unknown-linux-gnueabihf TARGET: armv7-unknown-linux-gnueabihf
@ -138,6 +140,7 @@ build-aarch64-linux-gnu:
image: ubuntu image: ubuntu
only: only:
- master - master
- /^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/
needs: [] needs: []
variables: variables:
TARGET: aarch64-unknown-linux-gnu TARGET: aarch64-unknown-linux-gnu
@ -174,7 +177,7 @@ build-x86_64-windows:
- windows - windows
only: only:
- master - master
allow_failure: true - /^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/
needs: [] needs: []
variables: variables:
TARGET: x86_64-pc-windows-msvc TARGET: x86_64-pc-windows-msvc
@ -206,7 +209,6 @@ test-cargo-x86_64-linux-gnu:
# stage: test # stage: test
# tags: # tags:
# - windows # - windows
# allow_failure: true
# needs: [] # needs: []
# dependencies: [] # dependencies: []
# <<: *before_script-windows # <<: *before_script-windows