diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4deb3c3..2940a22 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -17,19 +17,9 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - name: 🚑 Fix DNS for Gitea (Hairpin NAT Patch) - run: | - echo "192.168.178.47 gitea.iswearihadsomethingforthis.net" | sudo tee -a /etc/hosts - - name: Checkout code uses: actions/checkout@v4 - - name: 🕵️ Sherlock Holmes Debug - run: | - echo "📍 JE SUIS ICI : $(pwd)" - echo "📂 VOICI LE CONTENU DU DOSSIER :" - ls -R - - name: Build and run tests run: make _ci-run-tests diff --git a/Makefile b/Makefile index 6afd52e..b234e74 100644 --- a/Makefile +++ b/Makefile @@ -63,6 +63,7 @@ build: check-docker build-test: check-docker @echo "$(T)🐳 Building test image (with dev deps)...$(R)" cd $(CORE_DIR) && docker build \ + --no-cache \ --build-arg RUNNER=$(RUNNER) \ --build-arg PYTHON_VERSION=$(PYTHON_VERSION) \ --build-arg PYTHON_VERSION_SHORT=$(PYTHON_VERSION_SHORT) \