Files
libakstdlib/.gitea/workflows/ci.yaml
Andrew Kesterson 3e3ea41dc8
Some checks failed
libakstdlib CI Build / cmake_build (push) Failing after 2m41s
Add CI build
2026-06-27 10:40:06 -04:00

29 lines
957 B
YAML

name: libakstdlib CI Build
run-name: ${{ gitea.actor }} libakstdlib 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
# Depends on libakerror@main
git clone https://source.starfort.tech/andrew/libakerror.git
cd libakerror
cmake -S . -B build
cmake --build build
cmake --install build
- name: build and test
run: |
cmake -S . -B build
cmake --build build
sudo cmake --install build
cmake --build build --target test
- run: echo "🍏 This job's status is ${{ job.status }}."