Add gitea workflow
All checks were successful
libakerror CI Build / cmake_build (push) Successful in 2m35s
All checks were successful
libakerror CI Build / cmake_build (push) Successful in 2m35s
This commit is contained in:
20
.gitea/workflows/ci.yaml
Normal file
20
.gitea/workflows/ci.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
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 update
|
||||
sudo apt-get install -y cmake gcc
|
||||
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=installdir
|
||||
cmake --build build
|
||||
cmake --install build
|
||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
This library provides a TRY/CATCH style exception handling mechanism for C.
|
||||
|
||||

|
||||
|
||||
# Why?
|
||||
|
||||
There is nothing wrong with C as it is. This library does not claim to fix some problem with C.
|
||||
|
||||
Reference in New Issue
Block a user