Files
libakerror/.gitea/workflows/ci.yaml
Andrew Kesterson 0a224c572d
Some checks failed
libakerror CI Build / cmake_build (push) Failing after 2m40s
Add gitea workflow
2026-06-27 10:17:23 -04:00

24 lines
785 B
YAML

name: libakerror CI Build
run-name: ${{ gitea.actor }} libakerror test
on: [push]
jobs:
cmake_build:
runs-on: ubuntu-latest
steps:
- run: echo "Triggered by ${{ gitea.event_name }} from ${{ gitea.repository }}@${{ gitea.ref }}. Building on ${{ runner.os }}."
- name: Check out repository code
uses: actions/checkout@v4
- name: dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y cmake gcc moreutils
- name: build and test
run: |
mkdir installdir
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=installdir
cmake --build build
cmake --install build
cmake --build build --target test
- run: echo "🍏 This job's status is ${{ job.status }}."