Ignore vscode files #7052
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: Plugins | |
| on: [push] | |
| env: | |
| RUST_BACKTRACE: full | |
| jobs: | |
| softposit: | |
| name: "Plugin tests (Posits)" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Install Packages" | |
| run: sudo apt-get install -y libmpfr6 libmpfr-dev | |
| - name: "Install Racket" | |
| uses: Bogdanp/[email protected] | |
| with: | |
| version: "8.14" | |
| - 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 | |
| - name: "Install SoftPosit support" | |
| run: raco pkg install softposit-rkt | |
| - name: "Run posit benchmarks" | |
| run: racket infra/ci.rkt --platform infra/softposit.rkt --precision posit16 --seed 0 infra/bench/posits.fpcore |