-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 1.06 KB
/
statistical_tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Executar Testes
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Verificar código
uses: actions/checkout@v3
with:
lfs: true # Habilita o suporte ao Git LFS
- name: Instalar Dependências
run: |
sudo apt update
sudo apt install -y libtestu01-0-dev gcc autoconf automake libtool # Instala ferramentas necessárias
- name: Compilar e Instalar TESTU01
run: |
cd TESTU01/TestU01-1.2.3 # Navega para o diretório correto
./bootstrap.sh || true # Tenta executar o bootstrap se disponível
./configure # Configura o projeto
make # Compila o projeto
sudo make install # Instala o projeto
- name: Compilar e Executar "teste"
run: |
gcc TESTU01/teste.c -o TESTU01/teste -Iinclude -Ilib -lmylib -ltestu01 -lprobdist -lm
chmod +x TESTU01/teste
./TESTU01/teste