Testing void linux container
All checks were successful
Compile / Compile (push) Successful in 5s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s

This commit is contained in:
2026-01-06 21:20:10 +02:00
parent 1cc6aeefd2
commit 5bcd048bd5
2 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
name: Compile
run-name: Compiling the software (Void Linux)
on: [push]
jobs:
Compile:
runs-on: ubuntu-latest
container:
image: ghcr.io/void-linux/void-glibc-full:20260101r1
steps:
- name: Install dependencies
run: |
xbps-install -Syu
xbps-install -y gcc git make nodejs
- name: Checkout repository
uses: actions/checkout@v3
- name: Compile software
run: g++ main.cpp -o program
- name: Execute program
run: ./program

View File

@@ -1,5 +1,5 @@
name: Compile
run-name: Compiling the software
run-name: Compiling the software (Ubuntu)
on: [push]
jobs: