diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index b25541127c..b559284f02 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -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')) }}