diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2cdddd3..33152d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }} @@ -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 @@ -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: |