Files
libakerror/.gitea/workflows/ci.yaml
Andrew Kesterson 42131d2b7e
Some checks failed
libakerror CI Build / cmake_build (push) Failing after 11s
Add gitea workflow
2026-06-27 09:53:22 -04:00

20 lines
678 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: cmake build
run: |
mkdir installdir
sudo apt-get install cmake gcc binutils autoconf autotools
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=installdir
cmake --build build
cmake --install build
- run: echo "🍏 This job's status is ${{ job.status }}."