From 1b98909472f2ea9ddf83f909982e448eaad70ae4 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Sat, 20 Apr 2024 22:07:57 +0100 Subject: [PATCH] temp --- .github/workflows/ci.yml | 35 ++++++++++++++--------------------- 1 file changed, 14 insertions(+), 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9faaa4..feca8a5 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 }} @@ -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: |