Skip to content

add fib40 test on ci #10

add fib40 test on ci

add fib40 test on ci #10

Workflow file for this run

name: Test
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: egor-tensin/setup-gcc@v1
with:
version: latest
- run: |
sudo apt install -y make
- name: Build
run: make -j test
- name: Benchmark
run: |
set +e
echo "cnt_1bill"
./test/test ./test/cnt_1bill
echo "nops"
./test/test ./test/nops
echo "naive_fib_40"
./test/test ./test/naive_fib_40
exit 0