-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
36 additions
and
1 deletion.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @Labs64/labs64-dev |
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,34 @@ | ||
# This workflow will build a C++ project with CMake, currently only on Ubuntu 22.04 / default GNU C++ | ||
|
||
name: NetLicensing Client - CI | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: [self-hosted] | ||
container: ubuntu:22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Upgrade default packages | ||
run: | | ||
apt-get update | ||
apt-get upgrade -y | ||
- name: Install required dependencies | ||
run: apt-get install -y git g++ cmake libcurl4-openssl-dev | ||
- name: Build with CMake | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake .. | ||
make | ||
- name: Run Demo App | ||
run: | | ||
cd build | ||
./netlicensing-client-demo |
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