-
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.
- Loading branch information
0 parents
commit 80589bf
Showing
61 changed files
with
22,216 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Build, test, deploy recipe | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
build-test-deployrecipe: | ||
uses: shredeagle/reusable-workflows/.github/workflows/main_build.yml@v1.0.0 | ||
with: | ||
# Disable macos while spdlog crashes its compiler | ||
# see: https://github.com/conan-io/conan-center-index/issues/8480 | ||
os: >- | ||
["ubuntu-20.04", "windows-2019"] | ||
deployrecipe_userchannel: adnn/develop | ||
secrets: | ||
SHREDROBOT_GITHUB_TOKEN: ${{ secrets.SHREDROBOT_GITHUB_TOKEN }} | ||
ACTION_CACHENAME: ${{ secrets.ACTION_CACHENAME }} | ||
CONAN_USER_NAME: ${{ secrets.CONAN_USER_NAME }} | ||
CONAN_USER_PASSWORD: ${{ secrets.CONAN_USER_PASSWORD }} | ||
|
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,21 @@ | ||
name: Topical build-test | ||
|
||
on: | ||
push: | ||
branches: | ||
- topic/** | ||
- fix/** | ||
|
||
jobs: | ||
build-test: | ||
uses: shredeagle/reusable-workflows/.github/workflows/main_build.yml@v1.0.0 | ||
with: | ||
# Disable macos while spdlog crashes its compiler | ||
# see: https://github.com/conan-io/conan-center-index/issues/8480 | ||
os: >- | ||
["ubuntu-20.04", "windows-2019"] | ||
secrets: | ||
SHREDROBOT_GITHUB_TOKEN: ${{ secrets.SHREDROBOT_GITHUB_TOKEN }} | ||
ACTION_CACHENAME: ${{ secrets.ACTION_CACHENAME }} | ||
CONAN_USER_NAME: ${{ secrets.CONAN_USER_NAME }} | ||
CONAN_USER_PASSWORD: ${{ secrets.CONAN_USER_PASSWORD }} |
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,44 @@ | ||
# common # | ||
*.*~ | ||
|
||
# Build folders # | ||
/build/ | ||
/build_*/ | ||
/build-*/ | ||
/conan/test_package/build/ | ||
|
||
# Clang tooling # | ||
.clangd/ | ||
compile_commands.json | ||
|
||
# Vim # | ||
*.swp | ||
*.swo | ||
|
||
# Node/NPM # | ||
node_modules/ | ||
|
||
# OS X# | ||
|
||
## system ## | ||
*.DS_Store | ||
|
||
## XCode ## | ||
*.pbxuser | ||
*.xccheckout | ||
*.mode1v3 | ||
xcuserdata/ | ||
*.dSYM | ||
|
||
# Windows # | ||
|
||
## system ## | ||
Thumbs.db | ||
|
||
## Visual Studio ## | ||
*.suo | ||
*.sdf | ||
*.ncb | ||
*.user | ||
ipch | ||
.vscode |
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,3 @@ | ||
[submodule "cmake"] | ||
path = cmake | ||
url = git@github.com:Adnn/cmake_helper.git |
Oops, something went wrong.