From a785df1ec65d3e4618f7165e884283b7f0564eaa Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Wed, 14 May 2025 23:38:44 +0300 Subject: [PATCH] ci: add e2e tests --- .gitea/workflows/e2e-tests.yaml | 49 +++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .gitea/workflows/e2e-tests.yaml diff --git a/.gitea/workflows/e2e-tests.yaml b/.gitea/workflows/e2e-tests.yaml new file mode 100644 index 0000000..9595547 --- /dev/null +++ b/.gitea/workflows/e2e-tests.yaml @@ -0,0 +1,49 @@ +# ALR - Any Linux Repository +# Copyright (C) 2025 The ALR Authors +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +name: E2E + +on: + push: + branches: [ main ] + pull_request: + + +jobs: + tests: + runs-on: ubuntu-latest + + container: + image: altlinux.space/maks1ms/actions-container-runner:latest + + steps: + - name: Checkout + uses: https://github.com/actions/checkout@v4 + + - name: Set up Go + uses: https://github.com/actions/setup-go@v5 + with: + go-version: '1.24' + + - name: Start Podman service + run: nohup podman system service -t 0 unix:/tmp/podman.sock & + + - name: Run E2E tests + env: + DOCKER_HOST: unix:/tmp/podman.sock + IGNORE_ROOT_CHECK: 1 + run: | + make e2e-test