From 7d7fa69c3c0f79e459611787e8465f48150bf7b8 Mon Sep 17 00:00:00 2001 From: Paul Koch Date: Wed, 24 Jul 2024 16:58:29 -0700 Subject: [PATCH] fafgafafa --- .github/workflows/ci.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce1021dd9..5bd4e87b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,6 @@ # for github runner images, see: https://github.com/actions/runner-images?tab=readme-ov-file#available-images -name: CI +name: interpret-CI on: push: @@ -25,22 +25,22 @@ jobs: options: "-debug_64" artifact_name: "libebm_ubuntu_debug_64" - name: mac_release_64 - image: macos-13 + image: macos-13 # macos-13 is an intel based mac asm: "-asm" options: "-release_64" artifact_name: "libebm_mac_release_64" - name: mac_debug_64 - image: macos-13 + image: macos-13 # macos-13 is an intel based mac asm: "" options: "-debug_64" artifact_name: "libebm_mac_debug_64" - name: mac_release_arm - image: macos-14 + image: macos-14 # macos-14 is an ARM based mac asm: "-asm" options: "-release_arm" artifact_name: "libebm_mac_release_arm" - name: mac_debug_arm - image: macos-14 + image: macos-14 # macos-14 is an ARM based mac asm: "" options: "-debug_arm" artifact_name: "libebm_mac_debug_arm" @@ -61,7 +61,7 @@ jobs: - name: Build on Windows if: startsWith(matrix.image, 'windows') run: | - $env:PATH += ';C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin' + # $env:PATH += ';C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin' .\build.bat ${{ matrix.options }} ${{ matrix.asm }} - name: Build on Linux if: startsWith(matrix.image, 'ubuntu') @@ -70,15 +70,15 @@ jobs: sudo apt --yes install nvidia-cuda-toolkit /bin/sh ./build.sh ${{ matrix.options }} ${{ matrix.asm }} - name: Build on macOS - if: startsWith(matrix.image, 'macOS') + if: startsWith(matrix.image, 'macos') run: | /bin/sh ./build.sh ${{ matrix.options }} ${{ matrix.asm }} - - name: Publish native shared library + - name: Publish shared library uses: actions/upload-artifact@v4 with: name: ${{ matrix.artifact_name }} path: bld/lib - - name: Publish assembly x64 + - name: Publish assembly if: ${{ matrix.asm != '' }} uses: actions/upload-artifact@v4 with: