Simplify scheduling with pre-set schedule steps #8078
Workflow file for this run
This file contains hidden or 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: Integration | |
| on: [push] | |
| env: | |
| RUST_BACKTRACE: full | |
| jobs: | |
| hamming: | |
| name: "Integration tests (Hamming)" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| racket-version: [ '8.7', '8.14' ] | |
| precision: [ 'binary32', 'binary64' ] | |
| steps: | |
| - name: "Install Packages" | |
| run: sudo apt-get install -y libmpfr6 libmpfr-dev | |
| - name: "Install Racket" | |
| uses: Bogdanp/[email protected] | |
| with: | |
| version: ${{ matrix.racket-version }} | |
| - name: Install Rust compiler | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| components: rustfmt, clippy | |
| - uses: actions/checkout@master | |
| - name: "Install dependencies" | |
| run: make install | |
| - run: racket -y infra/ci.rkt --precision ${{ matrix.precision }} --seed 0 bench/hamming/ |