Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
ethomson committed Apr 20, 2024
1 parent 14c599d commit 1b98909
Showing 1 changed file with 14 additions and 21 deletions.
35 changes: 14 additions & 21 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 @@ -89,25 +89,18 @@ jobs:
uses: actions/checkout@v4
- name: Setup
run: |
mkdir -p build/runtimes/linux-x64
mkdir -p build/runtimes/osx
mkdir -p build/runtimes/win-x64
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 linux-x64
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: 'linux-x64.zip'
path: build/runtimes/linux-x64/native
- name: Download osx
uses: actions/download-artifact@v4
with:
name: 'osx.zip'
path: build/runtimes/osx/native
- name: Download win-x64
uses: actions/download-artifact@v4
with:
name: 'win-x64.zip'
path: build/runtimes/win-x64/native
path: tmp
- name: Temp
shell: bash
run: ls -FlasR
- name: Calculate Version
id: version
run: |
Expand Down

0 comments on commit 1b98909

Please sign in to comment.