Files
build1/.gitea/workflows/build.yml
T
Dominik Werder 3fd321b606
Buildtest / build (push) Failing after 22s
Run
2026-07-02 15:53:28 +02:00

38 lines
943 B
YAML

name: Buildtest
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: rhel10
steps:
- name: Node
run: dnf install nodejs
- name: Check out repository
uses: actions/checkout@v4
- name: Release
run: cat /etc/*release
- name: Search for podman
run: dnf search podman
- name: Look for podman
run: dnf info podman
- 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.tgz >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