Skip to content

Commit

Permalink
v
Browse files Browse the repository at this point in the history
  • Loading branch information
ethomson committed Apr 20, 2024
1 parent cc273f7 commit 56dfbcd
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
platform:
- name: Linux (amd64)
os: ubuntu-latest
# - name: macOS (amd64, arm64)
# os: macos-latest
# cmake_options: -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
# - name: Windows (amd64)
# os: windows-latest
- name: macOS (amd64, arm64)
os: macos-latest
cmake_options: -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
- name: Windows (amd64)
os: windows-latest

name: "Build: ${{ matrix.platform.name }}"
runs-on: ${{ matrix.platform.os }}
Expand Down Expand Up @@ -93,6 +93,8 @@ jobs:
run: |
mkdir -p tmp
mkdir -p build/runtimes/linux-x64/native
mkdir -p build/runtimes/osx/native
mkdir -p build/runtimes/win-x64/native
choco install nuget.commandline
- name: Download Artifacts
uses: actions/download-artifact@v4
Expand All @@ -101,6 +103,8 @@ jobs:
- name: Set up Artifacts
run: |
mv tmp/linux-x64/* build/runtimes/linux-x64/native
mv tmp/osx/* build/runtimes/osx/native
mv tmp/win-x64/* build/runtimes/win-x64/native
- name: Calculate Version
id: version
run: |
Expand Down

0 comments on commit 56dfbcd

Please sign in to comment.