rpmbuilder/.gitea/workflows/build.yaml
Ben Vincent 04a4d6d795
Some checks failed
Build / build (pull_request) Failing after 43s
feat: update makefile
2024-11-23 14:16:35 +11:00

31 lines
656 B
YAML

name: Build
on:
pull_request:
jobs:
build:
runs-on: almalinux-8
container:
image: git.query.consul/unkin/almalinux8:latest
options: --privileged
steps:
- name: Set up environment
run: |
dnf install -y yum-utils
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
dnf module enable -y nodejs:20
dnf install -y docker-ce-cli make bash git nodejs
- name: Checkout code
uses: actions/checkout@v3
- name: Build Packages
run: |
make all
- name: Show tree
run: |
tree /workspace