commit 5175119d30996b9318f357a15ff9d323e3de3909 Author: Dominik Werder Date: Thu Jul 2 15:43:25 2026 +0200 Try to load image diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml new file mode 100644 index 0000000..229f979 --- /dev/null +++ b/.gitea/workflows/build.yml @@ -0,0 +1,36 @@ +name: Buildtest + +on: + push: + branches: + - main + + pull_request: + +jobs: + build: + # Use whatever normal runner label your Gitea instance provides. + # Common examples are: ubuntu-latest, linux, docker, or native. + runs-on: ubuntu-latest + + steps: + - name: Check out repository + uses: actions/checkout@v4 + + - name: Download build image + run: | + curl -L \ + -o devimgs-centos-7-rust.tgz \ + https://gitea.psi.ch/api/packages/daqbuf/generic/devimgs-centos-7-rust/0.1.0/devimgs-centos-7-rust.tgz + + - name: Unpack build image + run: | + devimgs-centos-7-rust.tar gunzip + + - name: Load build image into Podman + run: | + podman load -i devimgs-centos-7-rust.tar + + - name: Show loaded images + run: | + podman images