Skip to content

Commit

Permalink
Try to use older runners when compiling Blake3
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Sep 29, 2023
1 parent 1ba01ae commit 42ca8a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-20.04, windows-latest, macos-11]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Build Linux
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-20.04'
run: |
chmod 755 *.sh
echo "building linux-x64"
Expand All @@ -36,7 +36,7 @@ jobs:
sudo apt-get install gcc-arm-linux-gnueabihf
./build-linux-arm.sh
- name: Build macOS
if: matrix.os == 'macOS-latest'
if: matrix.os == 'macos-11'
run: |
chmod 755 *.sh
./build-osx-x64.sh
Expand Down

0 comments on commit 42ca8a8

Please sign in to comment.