disable other build to fail fast

This commit is contained in:
Rahul Patil
2024-09-17 11:37:57 +02:00
parent 69122999e3
commit e599777b22

View File

@@ -151,6 +151,9 @@ jobs:
# target/
# key: v1-${{ runner.os }}-${{ runner.arch }}-cargo-clippy-${{ hashFiles('rust-toolchain.toml') }}-${{ hashFiles('Cargo.lock') }}
- name: exit
run: exit 0
# Some of our rust modules use FFI and need those to be checked
- name: Get postgres headers
run: make postgres-headers -j$(nproc)
@@ -198,7 +201,8 @@ jobs:
strategy:
fail-fast: false
matrix:
build_type: [ debug, release ]
build_type: [ release ]
# build_type: [ debug, release ]
env:
BUILD_TYPE: ${{ matrix.build_type }}
GIT_VERSION: ${{ github.event.pull_request.head.sha || github.sha }}
@@ -795,8 +799,10 @@ jobs:
strategy:
fail-fast: false
matrix:
version: [ v14, v15, v16, v17 ]
arch: [ x64, arm64 ]
version: [ v14 ]
# version: [ v14, v15, v16 ]
arch: [ x64 ]
# arch: [ x64, arm64 ]
runs-on: ${{ fromJson(format('["self-hosted", "{0}"]', matrix.arch == 'arm64' && 'large-arm64' || 'large')) }}