From c872543cdf40529c9b6971d52d48f1002312bff9 Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Tue, 31 Dec 2024 21:21:19 +0300 Subject: [PATCH 1/2] ci: try fix test --- .forgejo/workflows/format-lint-test.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.forgejo/workflows/format-lint-test.yaml b/.forgejo/workflows/format-lint-test.yaml index 1b6a415..07ea3db 100644 --- a/.forgejo/workflows/format-lint-test.yaml +++ b/.forgejo/workflows/format-lint-test.yaml @@ -36,6 +36,8 @@ jobs: test: runs-on: docker + container: + image: registry.altlinux.org/sisyphus/alt:20241211 steps: - name: Checkout Code @@ -56,6 +58,10 @@ jobs: restore-keys: | ${{ runner.os }}-golang- + - name: Prepare for tests + run: | + apt-get install apt-repo-tools + - name: Run Tests run: | make test-coverage -- 2.45.2 From a7e17d1c2d5d881979841a6cc7d366bc52ec6425 Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Tue, 31 Dec 2024 21:42:30 +0300 Subject: [PATCH 2/2] ci: change test image --- .forgejo/workflows/format-lint-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/format-lint-test.yaml b/.forgejo/workflows/format-lint-test.yaml index 07ea3db..86a0270 100644 --- a/.forgejo/workflows/format-lint-test.yaml +++ b/.forgejo/workflows/format-lint-test.yaml @@ -37,7 +37,7 @@ jobs: test: runs-on: docker container: - image: registry.altlinux.org/sisyphus/alt:20241211 + image: ghcr.io/aides-infra/aides-repo-api-test-image:20241231 steps: - name: Checkout Code -- 2.45.2