Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Jul 25, 2024
1 parent 0fe1e13 commit f8fd8d1
Showing 1 changed file with 40 additions and 40 deletions.
80 changes: 40 additions & 40 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,43 +271,43 @@ jobs:
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: mac test_native
# if: ${{ startsWith(matrix.image, 'macos') }}
# run: |
# /bin/sh ./shared/libebm/tests/libebm_test.sh ${{ matrix.options }}
# - name: linux test_native (CI)
# 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.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.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
# cuda_11.2.2_win10_network.exe -s nvcc_11.2 visual_studio_integration_11.2 cudart_11.2
# IF ERRORLEVEL 1 (
# ECHO cuda_11.2.2_win10_network.exe FAILED
# EXIT /B 201
# )
# .\shared\libebm\tests\libebm_test.bat ${{ matrix.options }}
# - name: win test_native (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
# cuda_11.2.2_win10_network.exe -s nvcc_11.2 visual_studio_integration_11.2 cudart_11.2
# IF ERRORLEVEL 1 (
# ECHO cuda_11.2.2_win10_network.exe FAILED
# EXIT /B 201
# )
# .\shared\libebm\tests\libebm_test.bat ${{ matrix.options }} ${{ matrix.scheduled }}
- 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.image, 'macos') }}
run: |
/bin/sh ./shared/libebm/tests/libebm_test.sh ${{ matrix.options }}
- name: linux test_native (CI)
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.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.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
cuda_11.2.2_win10_network.exe -s nvcc_11.2 visual_studio_integration_11.2 cudart_11.2
IF ERRORLEVEL 1 (
ECHO cuda_11.2.2_win10_network.exe FAILED
EXIT /B 201
)
.\shared\libebm\tests\libebm_test.bat ${{ matrix.options }}
- name: win test_native (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
cuda_11.2.2_win10_network.exe -s nvcc_11.2 visual_studio_integration_11.2 cudart_11.2
IF ERRORLEVEL 1 (
ECHO cuda_11.2.2_win10_network.exe FAILED
EXIT /B 201
)
.\shared\libebm\tests\libebm_test.bat ${{ matrix.options }} ${{ matrix.scheduled }}

0 comments on commit f8fd8d1

Please sign in to comment.