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 8f1485a commit 89bddb3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/PRNG.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ jobs:
- name: Verificar código
uses: actions/checkout@v3

- 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/PRNG_m64_l8 code/PRNG_m64_l8.c || { echo "Falha ao compilar PRNG_m64_l8.c"; exit 1; }
gcc -o code/PRNGm64_l16 code/PRNGm64_l16.c || { echo "Falha ao compilar PRNGm64_l16.c"; exit 1; }
- name: Listar arquivos compilados
run: |
echo "Arquivos na pasta code:"
Expand Down

0 comments on commit 89bddb3

Please sign in to comment.