aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrzej Janik <[email protected]>2024-09-13 19:54:43 +0200
committerAndrzej Janik <[email protected]>2024-09-13 19:54:43 +0200
commit2cd7910d465914b868396d0192e8ddc31086d2d8 (patch)
tree6821f38ce40f44cf84eb683e8d489d10e0bd6217
parent415639da728137e87c250698616d805c9e4a8d40 (diff)
downloadZLUDA-2cd7910d465914b868396d0192e8ddc31086d2d8.tar.gz
ZLUDA-2cd7910d465914b868396d0192e8ddc31086d2d8.zip
Remove Github build workflow
-rw-r--r--.github/workflows/rust.yml60
1 files changed, 0 insertions, 60 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
deleted file mode 100644
index 26ede14..0000000
--- a/.github/workflows/rust.yml
+++ /dev/null
@@ -1,60 +0,0 @@
-name: Rust
-
-on:
- push:
- branches: [ master ]
- pull_request:
- branches: [ master ]
-
-env:
- CARGO_TERM_COLOR: always
-
-jobs:
- build_lin:
- name: Build and publish (Linux)
- runs-on: ubuntu-20.04
- steps:
- - uses: actions/checkout@v2
- with:
- submodules: true
- - name: Install GPU drivers
- run: |
- sudo apt-get install -y gpg-agent wget
- wget -qO - https://repositories.intel.com/graphics/intel-graphics.key | sudo apt-key add -
- sudo apt-add-repository 'deb [arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main'
- sudo apt-get update
- sudo apt-get install intel-opencl-icd intel-level-zero-gpu level-zero intel-media-va-driver-non-free libmfx1 libigc-dev intel-igc-cm libigdfcl-dev libigfxcmrt-dev level-zero-dev ocl-icd-opencl-dev
- - name: Build
- run: cargo build --workspace --verbose --release
- - name: Rename to libcuda.so
- run: |
- mv target/release/libnvcuda.so target/release/libcuda.so
- ln -s libcuda.so target/release/libcuda.so.1
- - uses: actions/upload-artifact@v2
- with:
- name: Linux
- path: |
- target/release/libcuda.so
- target/release/libcuda.so.1
- target/release/libnvml.so
- build_win:
- name: Build and publish (Windows)
- runs-on: windows-latest
- steps:
- - uses: actions/checkout@v2
- with:
- submodules: true
- - name: Build
- run: cargo build --workspace --verbose --release
- - uses: actions/upload-artifact@v2
- with:
- name: Windows
- path: |
- target/release/nvcuda.dll
- target/release/nvml.dll
- target/release/zluda_redirect.dll
- target/release/zluda_with.exe
- target/release/zluda_dump.dll
- # TODO(take-cheeze): Support testing
- # - name: Run tests
- # run: cargo test --verbose