Skip to content

tweak comment

tweak comment #1697

Workflow file for this run

name: Plugin tests
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.7
- name: Install Rust compiler
uses: actions-rs/[email protected]
with:
toolchain: stable
default: true
override: true
components: rustfmt, clippy
- uses: actions/checkout@master
- name: "Install dependencies"
run: make install
- name: "Check out softposit-herbie master"
uses: actions/checkout@master
with:
repository: herbie-fp/softposit-herbie
path: plugin
- name: "Install SoftPosit support"
run: raco pkg install --no-cache --auto --name softposit-herbie plugin/
- name: "Run posit benchmarks"
run: racket infra/travis.rkt --precision posit16 --seed 0 plugin/bench/posits.fpcore
softposit-pherbie:
name: "Plugin tests (Posits, Pherbie)"
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.5
- name: Install Rust compiler
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
components: rustfmt, clippy
- uses: actions/checkout@master
- name: "Install dependencies"
run: make install
- name: "Check out softposit-herbie master"
uses: actions/checkout@master
with:
repository: herbie-fp/softposit-herbie
path: plugin
- name: "Install SoftPosit support"
run: raco pkg install --no-cache --auto --name softposit-herbie plugin/
- name: "Run posit benchmarks"
run: racket infra/travis.rkt --seed 0 --pareto plugin/bench/posits.fpcore infra/bench/posit-pherbie.fpcore