From bb70b40e3f4071359d558ce5c17a38d511eb8cd0 Mon Sep 17 00:00:00 2001 From: Jed Brown Date: Wed, 20 Mar 2024 12:32:52 -0600 Subject: [PATCH 1/2] BLIS 1.0-rc1 --- blis-src/upstream | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blis-src/upstream b/blis-src/upstream index a781250..968c9be 160000 --- a/blis-src/upstream +++ b/blis-src/upstream @@ -1 +1 @@ -Subproject commit a781250e1407298805e3f08cab563a14a43e6377 +Subproject commit 968c9be404763b48e72f218598c7edd2bd571780 From a1d2eb52ed4136e2cf0baa9b34ef4f196fa39bb9 Mon Sep 17 00:00:00 2001 From: Jed Brown Date: Tue, 26 Mar 2024 07:59:02 -0600 Subject: [PATCH 2/2] ci: update runners to macos-13 and ubuntu-22.04 --- .github/workflows/rust.yml | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 163fb1b..99fbbca 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -8,7 +8,7 @@ on: jobs: macos: - runs-on: macos-10.15 + runs-on: macos-13 strategy: fail-fast: false matrix: @@ -17,22 +17,20 @@ jobs: - static - system steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: 'recursive' - name: Install BLIS by homebrew run: | brew install blis if: ${{ contains(matrix.feature, 'system') }} - - uses: actions-rs/cargo@v1 - with: - command: test - args: > - --features=${{ matrix.feature }} - --manifest-path=blis-src/Cargo.toml + - uses: dtolnay/rust-toolchain@stable + - run: > + cargo test + --features=${{ matrix.feature }} linux: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 container: image: rust strategy: @@ -43,7 +41,7 @@ jobs: - static - system steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: 'recursive' - name: Install BLIS by apt @@ -51,9 +49,7 @@ jobs: apt update apt install -y libblis-dev if: ${{ contains(matrix.feature, 'system') }} - - uses: actions-rs/cargo@v1 - with: - command: test - args: > - --features=${{ matrix.feature }} - --manifest-path=blis-src/Cargo.toml + - uses: dtolnay/rust-toolchain@stable + - run: > + cargo test + --features=${{ matrix.feature }}