Full Test #29
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: Full Test | |
on: | |
workflow_dispatch: | |
jobs: | |
full-test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cd src && make -f Makefile.linux-x86.mk | |
- name: Test | |
run: ./loda test | |
- name: Benchmark | |
run: ./loda benchmark | |
- name: Setup | |
run: | | |
mkdir -p $HOME/loda | |
git clone https://github.com/loda-lang/loda-programs.git $HOME/loda/programs | |
- name: Test IncEval | |
run: ./loda test-inceval | |
- name: Test Analyzer | |
run: ./loda test-analyzer | |
- name: Test PARI | |
run: | | |
sudo apt-get update | |
sudo apt-get install pari-gp | |
gp --version | |
./loda test-pari | |
- name: Find Slow | |
run: ./loda find-slow |