diff options
author | Takeshi Watanabe <[email protected]> | 2020-12-30 06:54:48 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-29 22:54:48 +0100 |
commit | ae950163cd05f7a2205740af0acc6e427f0ffd92 (patch) | |
tree | c7aaa5f688a3033e4de648f1a1b514f072819c32 /.github | |
parent | 63af70a01f03c9162ec76bf0be4a937d09570c8b (diff) | |
download | ZLUDA-ae950163cd05f7a2205740af0acc6e427f0ffd92.tar.gz ZLUDA-ae950163cd05f7a2205740af0acc6e427f0ffd92.zip |
Add building only CI (#25)
Testing isn't working yet because some tests require live Intel GPU and live NVIDIA GPU
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/rust.yml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..734052f --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,54 @@ +name: Rust + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + with: + submodules: true + - uses: actions/cache@v2 + with: + path: | + ~/.cargo/registry + ~/.cargo/git + target + key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + - name: Install intel compute runtime + run: | + mkdir neo + cd neo + wget https://github.com/intel/compute-runtime/releases/download/20.51.18762/intel-gmmlib_20.3.2_amd64.deb + wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.5884/intel-igc-core_1.0.5884_amd64.deb + wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.5884/intel-igc-opencl_1.0.5884_amd64.deb + wget https://github.com/intel/compute-runtime/releases/download/20.51.18762/intel-opencl_20.51.18762_amd64.deb + wget https://github.com/intel/compute-runtime/releases/download/20.51.18762/intel-ocloc_20.51.18762_amd64.deb + wget https://github.com/intel/compute-runtime/releases/download/20.51.18762/intel-level-zero-gpu_1.0.18762_amd64.deb + + wget https://github.com/intel/compute-runtime/releases/download/20.51.18762/ww51.sum + sha256sum -c ww51.sum + + wget https://github.com/oneapi-src/level-zero/releases/download/v1.0.22/level-zero-devel_1.0.22+u18.04_amd64.deb + wget https://github.com/oneapi-src/level-zero/releases/download/v1.0.22/level-zero_1.0.22+u18.04_amd64.deb + wget https://github.com/intel/intel-graphics-compiler/releases/download/igc-1.0.5884/intel-igc-opencl-devel_1.0.5884_amd64.deb + + sudo dpkg -i *.deb + + sudo apt update + sudo apt install ocl-icd-opencl-dev + - name: Build + run: cargo build --verbose + # TODO(take-cheeze): Support testing + # - name: Run tests + # run: cargo test --verbose |