mirror of
https://github.com/davidallendj/gdpm.git
synced 2025-12-20 11:37:00 -07:00
Refactored, simplified, and removed code; replaced cli header lib
- Reinitialized submodules - Slightly restructed project - Added more options to `compile.sh` script - Added more utility functions
This commit is contained in:
parent
d34243db74
commit
e48c54aa40
27 changed files with 564 additions and 3232 deletions
45
ci/github/workflows/build.yml
Normal file
45
ci/github/workflows/build.yml
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
name: CMake Linux Build
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: read
|
||||
|
||||
|
||||
concurrency:
|
||||
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
|
||||
cancel-in-progress: true
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: [self-hosted, linux]
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup
|
||||
run:
|
||||
echo "Setting up dependencies..."
|
||||
|
||||
- name: Build
|
||||
run:
|
||||
echo -e "Building executable, libraries, documentation, and symlinks...\n$PWD"
|
||||
./bin/compile.sh --all --docs --link --strip
|
||||
|
||||
- name: Test
|
||||
run:
|
||||
echo "Running unit tests..."
|
||||
./bin/gdpm-tests
|
||||
|
||||
- name: Package
|
||||
run:
|
||||
echo "Packaging binaries..."
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue