Skip to content

Commit

Permalink
Enable all CI build jobs for tag releases, don't allow Windows failures
Browse files Browse the repository at this point in the history
  • Loading branch information
timvisee committed Jan 30, 2023
1 parent cc2061a commit 6c3129a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ build-x86_64-linux-musl:
stage: build
only:
- 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: []
variables:
TARGET: x86_64-unknown-linux-musl
Expand All @@ -103,6 +104,7 @@ build-armv7-linux-gnu:
image: ubuntu
only:
- 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: []
variables:
TARGET: armv7-unknown-linux-gnueabihf
Expand Down Expand Up @@ -138,6 +140,7 @@ build-aarch64-linux-gnu:
image: ubuntu
only:
- 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: []
variables:
TARGET: aarch64-unknown-linux-gnu
Expand Down Expand Up @@ -174,7 +177,7 @@ build-x86_64-windows:
- windows
only:
- 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: []
variables:
TARGET: x86_64-pc-windows-msvc
Expand Down Expand Up @@ -206,7 +209,6 @@ test-cargo-x86_64-linux-gnu:
# stage: test
# tags:
# - windows
# allow_failure: true
# needs: []
# dependencies: []
# <<: *before_script-windows
Expand Down

0 comments on commit 6c3129a

Please sign in to comment.