From c0243475e47d5a2dff20bc60e69ddfc156f4e9a3 Mon Sep 17 00:00:00 2001 From: epi Date: Sat, 14 Sep 2024 22:50:54 -0400 Subject: [PATCH] updated ci pipeline; test 3 --- .github/workflows/build.yml | 8 ++++---- .github/workflows/check.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 12ff78fd..025bc524 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ jobs: env: IN_PIPELINE: true runs-on: ${{ matrix.os }} - # if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/main' strategy: matrix: type: [ubuntu-x64, ubuntu-x86, armv7, aarch64] @@ -118,7 +118,7 @@ jobs: env: IN_PIPELINE: true runs-on: macos-latest - # if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/main' steps: - uses: actions/checkout@v4 - name: Cache cargo & target directories @@ -147,7 +147,7 @@ jobs: env: IN_PIPELINE: true runs-on: macos-latest - # if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/main' steps: - uses: actions/checkout@v4 - name: Cache cargo & target directories @@ -176,7 +176,7 @@ jobs: env: IN_PIPELINE: true runs-on: ${{ matrix.os }} - # if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/main' strategy: matrix: type: [windows-x64, windows-x86] diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index a7573571..fc5849be 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -22,8 +22,8 @@ jobs: uses: Swatinem/rust-cache@v2 - name: Install latest nextest release uses: taiki-e/install-action@nextest + - uses: dtolnay/rust-toolchain@stable - name: Test with latest nextest release - uses: dtolnay/rust-toolchain@stable run: cargo nextest run --all-features --all-targets --retries 4 --no-fail-fast fmt: