refactor #405
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: validate | ||
on: [push, pull_request] | ||
jobs: {} | ||
# cannot validate at the moment because we cannot include | ||
# or generate traces in the repo | ||
# validate: | ||
# name: validate (${{ matrix.command }}) | ||
# runs-on: ubuntu-latest | ||
# strategy: | ||
# fail-fast: false | ||
# matrix: | ||
# command: ["simulate", "accelsim-simulate"] | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - uses: dtolnay/rust-toolchain@stable | ||
# - name: Install accelsim dependencies | ||
# run: >- | ||
# sudo apt-get install -y wget build-essential xutils-dev bison zlib1g-dev flex libglu1-mesa-dev libssl-dev libxml2-dev libboost-all-dev git g++ | ||
# - name: Install CUDA | ||
# uses: Jimver/[email protected] | ||
# id: cuda-toolkit | ||
# with: | ||
# cuda: "11.8.0" | ||
# method: "network" | ||
# use-github-cache: true | ||
# # list of available packages here: | ||
# # https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/ | ||
# sub-packages: '["nvcc", "runtime", "profiler-api"]' | ||
# - name: Build | ||
# run: cargo build -p validate --all-targets | ||
# - name: Build benchmarks | ||
# run: ./target/debug/validate build | ||
# - name: Run benchmarks | ||
# run: ./target/debug/validate ${{ matrix.command }} |