From 180dbfcea6edc0f0b7c624a79bd745e507dfee3c Mon Sep 17 00:00:00 2001 From: Kiara Grouwstra Date: Sun, 6 Jul 2025 21:28:07 +0200 Subject: [PATCH] explicitly use custom container in CI --- .forgejo/workflows/ci.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index d7e8e7db..cc7ba275 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -12,7 +12,7 @@ jobs: check-pre-commit: runs-on: docker container: - image: icewind1991/nix-runner + image: nix steps: - uses: actions/checkout@v4 - run: nix-build -A tests @@ -20,7 +20,7 @@ jobs: check-data-model: runs-on: docker container: - image: icewind1991/nix-runner + image: nix steps: - uses: actions/checkout@v4 - run: nix-shell --run 'nix-unit ./deployment/data-model-test.nix' @@ -34,7 +34,7 @@ jobs: check-peertube: runs-on: docker container: - image: icewind1991/nix-runner + image: nix steps: - uses: actions/checkout@v4 - run: nix build .#checks.x86_64-linux.test-peertube-service -L @@ -42,7 +42,7 @@ jobs: check-panel: runs-on: docker container: - image: icewind1991/nix-runner + image: nix steps: - uses: actions/checkout@v4 - run: nix-build -A tests.panel @@ -50,7 +50,7 @@ jobs: check-deployment-basic: runs-on: docker container: - image: icewind1991/nix-runner + image: nix steps: - uses: actions/checkout@v4 - run: nix build .#checks.x86_64-linux.deployment-basic -L @@ -58,7 +58,7 @@ jobs: check-deployment-cli: runs-on: docker container: - image: icewind1991/nix-runner + image: nix steps: - uses: actions/checkout@v4 - run: nix build .#checks.x86_64-linux.deployment-cli -L @@ -66,7 +66,7 @@ jobs: check-deployment-panel: runs-on: docker container: - image: icewind1991/nix-runner + image: nix steps: - uses: actions/checkout@v4 - run: nix build .#checks.x86_64-linux.deployment-panel -L