Skip to content

Commit

Permalink
sadfsd
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Jul 25, 2024
1 parent e51414f commit 0fe1e13
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,12 @@ jobs:
scheduled: "-valgrind"
artifact_name: ""
- name: mac_release_64
image: macos-latest-large
image: macos-13 # macos-13 is an intel based mac
options: "-release_64 -existing_release_64"
scheduled: ""
artifact_name: "libebm_mac_release_64"
- name: mac_debug_64
image: macos-latest-large
image: macos-13 # macos-13 is an intel based mac
# don't use the existing debug library since we want to rebuild with asan
options: "-debug_64 -asan"
scheduled: ""
Expand Down Expand Up @@ -265,30 +265,32 @@ jobs:
artifact_name: ""
runs-on: ${{ matrix.image }}
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Download libebm artifact
if: ${{ matrix.artifact_name != '' }}
uses: actions/download-artifact@v4
with:
name: ${{ matrix.artifact_name }}
path: bld/lib
# - name: Download libebm artifact
# if: ${{ matrix.artifact_name != '' }}
# uses: actions/download-artifact@v4
# with:
# name: ${{ matrix.artifact_name }}
# path: bld/lib
# - name: mac test_native
# if: ${{ startsWith(matrix.os, 'macos') }}
# if: ${{ startsWith(matrix.image, 'macos') }}
# run: |
# /bin/sh ./shared/libebm/tests/libebm_test.sh ${{ matrix.options }}
# - name: linux test_native (CI)
# if: ${{ startsWith(matrix.os, 'ubuntu') && github.event_name != 'schedule' }}
# if: ${{ startsWith(matrix.image, 'ubuntu') && github.event_name != 'schedule' }}
# run: |
# /bin/sh ./shared/libebm/tests/libebm_test.sh ${{ matrix.options }}
# - name: linux test_native (Schedule)
# if: ${{ startsWith(matrix.os, 'ubuntu') && github.event_name == 'schedule' }}
# if: ${{ startsWith(matrix.image, 'ubuntu') && github.event_name == 'schedule' }}
# run: |
# /bin/sh ./shared/libebm/tests/libebm_test.sh ${{ matrix.options }} ${{ matrix.scheduled }}
# - name: win test_native (CI)
# if: ${{ startsWith(matrix.os, 'windows') && github.event_name != 'schedule' }}
# if: ${{ startsWith(matrix.image, 'windows') && github.event_name != 'schedule' }}
# run: |
# SET PATH=%PATH%;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\
# SET CudaToolkitDir=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.2
Expand All @@ -299,7 +301,7 @@ jobs:
# )
# .\shared\libebm\tests\libebm_test.bat ${{ matrix.options }}
# - name: win test_native (Schedule)
# if: ${{ startsWith(matrix.os, 'windows') && github.event_name == 'schedule' }}
# if: ${{ startsWith(matrix.image, 'windows') && github.event_name == 'schedule' }}
# run: |
# SET PATH=%PATH%;C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\
# SET CudaToolkitDir=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.2
Expand Down

0 comments on commit 0fe1e13

Please sign in to comment.