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 }}."