Skip to content

Remove ordering operators. #16

Remove ordering operators.

Remove ordering operators. #16

Workflow file for this run

name: CI
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
# Run weekly to detect compiler or dependency regressions.
schedule:
- cron: "0 0 * * 0"
jobs:
test-on-nightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Futhark
run: |
wget http://futhark-lang.org/releases/futhark-nightly-linux-x86_64.tar.xz
tar xf futhark-nightly-linux-x86_64.tar.xz
(cd futhark-nightly-linux-x86_64/ && PREFIX=$HOME/.local make install)
echo "$HOME/.local/bin" >> $GITHUB_PATH
- run: futhark pkg sync
- run: futhark test --pass-compiler-option=--Werror lib
- run: futhark pkg upgrade
- run: futhark pkg sync
- run: futhark test --pass-compiler-option=--Werror lib