From c55ab6ab36c1c840434b475682329d28305616b9 Mon Sep 17 00:00:00 2001 From: Lucas Date: Thu, 2 Apr 2026 02:11:26 +0200 Subject: [PATCH] test n5 --- .gitea/workflows/{tets.yaml => tests_basics.yaml} | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) rename .gitea/workflows/{tets.yaml => tests_basics.yaml} (65%) diff --git a/.gitea/workflows/tets.yaml b/.gitea/workflows/tests_basics.yaml similarity index 65% rename from .gitea/workflows/tets.yaml rename to .gitea/workflows/tests_basics.yaml index e893be6..8b8067a 100644 --- a/.gitea/workflows/tets.yaml +++ b/.gitea/workflows/tests_basics.yaml @@ -6,17 +6,16 @@ jobs: test: runs-on: ubuntu-latest container: - # On utilise la version Alpine contenant Node.js 20 - image: node:20-alpine + # On passe sur Arch Linux pour une compatibilité parfaite + image: archlinux:latest steps: - name: Récupérer le code uses: actions/checkout@v4 - - name: Installer GCC et Criterion sur Alpine - # La commande apk fonctionne toujours car c'est un système Alpine - run: | - apk add --no-cache gcc musl-dev criterion + - name: Installer GCC et Criterion + # Synchronisation et installation sans confirmation + run: pacman -Syu --noconfirm gcc criterion - name: Compiler les tests run: >