From f76b357a1dce46213759210ad6292d0c77c7921a Mon Sep 17 00:00:00 2001 From: Paul Koch Date: Wed, 24 Jul 2024 16:34:03 -0700 Subject: [PATCH] asdfsafd --- .github/workflows/ci.yml | 35 +---------------------------------- 1 file changed, 1 insertion(+), 34 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb186aa14..5878bd274 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,14 +11,8 @@ on: schedule: - cron: "0 12 * * *" -env: - python_bld_ver: 3.9 - # ubuntu_test: ubuntu-latest - # mac_test: macOS-latest - # windows_test: windows-latest - jobs: - hello-world: + bld: strategy: matrix: include: @@ -66,56 +60,29 @@ jobs: steps: - name: Check out repository uses: actions/checkout@v2 - - name: Build on Windows if: startsWith(matrix.image, 'windows') run: | $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') run: | sudo apt --yes update sudo apt --yes install nvidia-cuda-toolkit /bin/sh ./build.sh ${{ matrix.options }} ${{ matrix.asm }} - - name: Build on macOS if: startsWith(matrix.image, 'macOS') run: | /bin/sh ./build.sh ${{ matrix.options }} ${{ matrix.asm }} - - name: Publish native shared library uses: actions/upload-artifact@v2 with: name: ${{ matrix.artifact_name }} path: bld/lib - - name: Publish assembly x64 if: ${{ matrix.asm != '' }} uses: actions/upload-artifact@v2 with: name: asm-${{ matrix.artifact_name }} path: bld/asm/ - - - -# jobs: -# bld: -# strategy: -# matrix: -# include: -# - name: linux_release_64 -# image: ${{ env.ubuntu_bld }} -# asm: "-asm" -# options: "-release_64" -# artifact_name: "libebm_ubuntu_release_64" -# - name: linux_debug_64 -# image: ${{ env.ubuntu_bld }} -# asm: "" -# options: "-debug_64" -# artifact_name: "libebm_ubuntu_debug_64" -# runs-on: ${{ matrix.image }} -# steps: -# - name: Check out repository -# uses: actions/checkout@v2