Skip to content

Commit

Permalink
asdfsafd
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Jul 24, 2024
1 parent dbdadf2 commit f76b357
Showing 1 changed file with 1 addition and 34 deletions.
35 changes: 1 addition & 34 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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

0 comments on commit f76b357

Please sign in to comment.