Skip to content

Commit

Permalink
Update PRNG.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Matheuzinh0 authored Oct 29, 2024
1 parent 3269324 commit 0b7013a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/PRNG.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
- name: Compilar os programas
run: |
echo "Compilando os programas..."
gcc -o code/PRNG2_m32_l8 code/PRNG2_m32_l8.c || { echo "Falha ao compilar PRNG2_m32_l8.c"; exit 1; }
gcc -o code/PRNG2_m64_l8 code/PRNG2_m64_l8.c || { echo "Falha ao compilar PRNG_m64_l8.c"; exit 1; }
gcc -o code/PRNG2_m64_l16 code/PRNG2_m64_l16.c || { echo "Falha ao compilar PRNGm64_l16.c"; exit 1; }
gcc -o code/PRNG2_m32_l8 code/PRNG2_m32_l8.c
gcc -o code/PRNG2_m64_l8 code/PRNG2_m64_l8.c
gcc -o code/PRNG2_m64_l16 code/PRNG2_m64_l16.c
- name: Listar arquivos compilados
run: |
Expand All @@ -37,6 +37,9 @@ jobs:
- name: Executar os programas
run: |
echo "Executando os scripts PRNG..."
echo "m=32 l=8"
./code/PRNG2_m32_l8
echo "m=64 l=8"
./code/PRNG2_m64_l8
echo "m=64 l =16"
./code/PRNG2_m64_l16

0 comments on commit 0b7013a

Please sign in to comment.