-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix encoding (iso-8859 -> utf-8) and add GL CI config (#98)
* Fix encoding (iso-8859 -> utf-8) * Initial CI config
- Loading branch information
Showing
2 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
variables: | ||
SHARED_LIBS: "ON" | ||
SECURE_LOG_LEVEL: "debug" | ||
|
||
include: | ||
- template: Jobs/Code-Quality.gitlab-ci.yml | ||
- template: Jobs/Secret-Detection.gitlab-ci.yml | ||
- template: Jobs/SAST.gitlab-ci.yml | ||
- template: Jobs/Dependency-Scanning.gitlab-ci.yml | ||
- template: Jobs/Code-Quality.gitlab-ci.yml | ||
|
||
|
||
stages: | ||
- build | ||
- test | ||
|
||
.build-job-ubuntu-22: | ||
image: ubuntu:22.04 | ||
before_script: | ||
- apt-get update && apt-get upgrade -y | ||
- apt-get install -y gcc g++ cmake wget git python3 python3-pip python3-setuptools | ||
script: | ||
- cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS='$SHARED_LIBS' -B "build/" | ||
- cmake --build build/ --config Release | ||
|
||
build-job-ubuntu-22-shared-libs-on: | ||
extends: .build-job-ubuntu-22 | ||
stage: build | ||
variables: | ||
SHARED_LIBS: "ON" | ||
|
||
build-job-ubuntu-22-shared-libs-off: | ||
extends: .build-job-ubuntu-22 | ||
stage: build | ||
variables: | ||
SHARED_LIBS: "OFF" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters