Adds the feature and test cases to support it. #80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ "main", "master", "GPU-MD5-Crack" ] | |
pull_request: | |
branches: [ "main", "master", "GPU-MD5-Crack" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Load OpenCL | |
run: | | |
wget -qO - https://repositories.intel.com/graphics/intel-graphics.key | | |
sudo apt-key add - | |
sudo add-apt-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 | |
sudo apt-get install ocl-icd-opencl-dev | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: cargo build --verbose | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Load OpenCL | |
run: | | |
wget -qO - https://repositories.intel.com/graphics/intel-graphics.key | | |
sudo apt-key add - | |
sudo add-apt-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 | |
sudo apt-get install ocl-icd-opencl-dev | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: cargo test --verbose |