Skip to content

Commit

Permalink
Merge pull request #22 from xoofx/try-old-images
Browse files Browse the repository at this point in the history
Update runners to use older images for Ubuntu and MacOS
  • Loading branch information
xoofx committed Sep 29, 2023
2 parents 1ba01ae + 06e6dd7 commit 0bb6593
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/managed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
submodules: true
fetch-depth: 0

- name: Install .NET 6.0
- name: Install .NET 7.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
Expand Down
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
Binary file modified src/Blake3/runtimes/linux-arm/native/libblake3_dotnet.so
Binary file not shown.
Binary file modified src/Blake3/runtimes/linux-arm64/native/libblake3_dotnet.so
Binary file not shown.
Binary file modified src/Blake3/runtimes/linux-x64/native/libblake3_dotnet.so
Binary file not shown.
Binary file modified src/Blake3/runtimes/osx-arm64/native/libblake3_dotnet.dylib
Binary file not shown.
Binary file modified src/Blake3/runtimes/osx-x64/native/libblake3_dotnet.dylib
Binary file not shown.
Binary file modified src/Blake3/runtimes/win-arm64/native/blake3_dotnet.dll
Binary file not shown.
Binary file modified src/Blake3/runtimes/win-x64/native/blake3_dotnet.dll
Binary file not shown.
Binary file modified src/Blake3/runtimes/win-x86/native/blake3_dotnet.dll
Binary file not shown.

0 comments on commit 0bb6593

Please sign in to comment.