mirror of
https://github.com/davidallendj/gdpm.git
synced 2025-12-20 03:27:02 -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
44
ci/gitlab-ci.yml
Normal file
44
ci/gitlab-ci.yml
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
variables:
|
||||
PROJECT_ROOT_PATH: /home/$USER/gdpm
|
||||
|
||||
|
||||
stages:
|
||||
- build
|
||||
- test
|
||||
- package
|
||||
|
||||
|
||||
cache:
|
||||
paths:
|
||||
- build
|
||||
|
||||
|
||||
before-script:
|
||||
- echo "Setting up dependencies..."
|
||||
|
||||
|
||||
build-job:
|
||||
stage: build
|
||||
script:
|
||||
- echo -e "Building executable and libraries...\n$PWD"
|
||||
- bin/compile.sh
|
||||
|
||||
|
||||
test-job:
|
||||
stage: test
|
||||
script:
|
||||
- echo "Running unit tests..."
|
||||
- bin/gdpm-tests
|
||||
|
||||
|
||||
package-job:
|
||||
stage: package
|
||||
script:
|
||||
- echo "Packaging binaries..."
|
||||
|
||||
|
||||
deploy-job:
|
||||
stage: deploy
|
||||
script:
|
||||
- echo "Deploying application..."
|
||||
environment: production
|
||||
Loading…
Add table
Add a link
Reference in a new issue