forked from vectorgrp/sil-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'vectorgrp:main' into bgm_use_docker
- Loading branch information
Showing
670 changed files
with
26,837 additions
and
14,056 deletions.
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
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,5 @@ | ||
root = true | ||
|
||
[*.{cpp,ipp,hpp,h,c}] | ||
indent_style = space | ||
indent_size = 4 |
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
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
This file was deleted.
Oops, something went wrong.
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,24 @@ | ||
name: 'Linux Feature Branch Builds' | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
do_package: | ||
required: true | ||
type: boolean | ||
default: true | ||
do_package_symbols: | ||
required: true | ||
type: boolean | ||
default: false | ||
retention_days: | ||
required: true | ||
type: number | ||
default: 14 | ||
|
||
jobs: | ||
call_linux_build: | ||
uses: ./.github/workflows/build-linux.yml | ||
with: | ||
do_package: ${{ inputs.do_package }} | ||
retention_days: ${{ fromJSON(inputs.retention_days) }} | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,56 @@ | ||
name: 'Linux Release Builds' | ||
on: | ||
workflow_call: | ||
inputs: | ||
do_package: | ||
required: false | ||
type: boolean | ||
default: false | ||
do_package_symbols: | ||
required: false | ||
type: boolean | ||
default: false | ||
retention_days: | ||
required: false | ||
type: number | ||
default: 14 | ||
run_build: | ||
required: true | ||
type: boolean | ||
|
||
jobs: | ||
clang14-release: | ||
name: Clang 14 release Builds for Ubuntu 22.04 | ||
environment: public-github-runners | ||
runs-on: ubuntu-22.04 | ||
if: inputs.run_build == true | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- uses: ./.github/actions/build-cmake-preset | ||
with: | ||
preset-name: clang14-release | ||
do-package: ${{ inputs.do_package }} | ||
retention-days: ${{ inputs.retention_days }} | ||
|
||
gcc-release: | ||
name: GCC release Builds for Ubuntu 22.04 | ||
environment: public-github-runners | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ghcr.io/mariusbgm/sil-kit-ci-ubuntu-22.04:main | ||
if: inputs.run_build == true | ||
steps: | ||
- name: git checkout | ||
uses: actions/checkout@v1 | ||
with: | ||
submodules: true | ||
- name: GCC release build | ||
uses: ./.github/actions/build-cmake-preset | ||
id: build | ||
with: | ||
preset-name: linux-release | ||
do-package: ${{ inputs.do_package }} | ||
retention-days: ${{ env.retention_days }} | ||
|
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
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
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,20 @@ | ||
name: 'Windows Feature Branch Builds' | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
do_package: | ||
required: true | ||
type: boolean | ||
default: true | ||
retention_days: | ||
required: true | ||
type: number | ||
default: 14 | ||
|
||
jobs: | ||
call_win_build: | ||
uses: ./.github/workflows/build-win.yml | ||
with: | ||
do_package: ${{ inputs.do_package }} | ||
retention_days: ${{ fromJSON(inputs.retention_days) }} | ||
|
Oops, something went wrong.