Skip to content

Commit

Permalink
fafgafafa
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Jul 24, 2024
1 parent 15edb98 commit 7d7fa69
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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"
Expand All @@ -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')
Expand All @@ -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:
Expand Down

0 comments on commit 7d7fa69

Please sign in to comment.