Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update runners to use older images for Ubuntu and MacOS #22

Merged
merged 2 commits into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.