Update tests.yml

Change gcc version
This commit is contained in:
Augustin 2022-11-03 12:40:06 +01:00 committed by GitHub
parent f30cf0229a
commit deefbd59fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,13 +13,21 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: |
sudo apt update
sudo apt install gcc-10
shell: bash
- name: print versions
run: make --version; gcc --version
- name: run-tests
run: make run-tests
env:
CC: gcc-10
- name: mnist main train
run: build/mnist-main train
--epochs 1
--images data/mnist/t10k-images-idx3-ubyte
--labels data/mnist/t10k-labels-idx1-ubyte
--out mnist-reseau.bin
env:
CC: gcc-10