Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
FranzPoize committed May 19, 2022
0 parents commit 80589bf
Show file tree
Hide file tree
Showing 61 changed files with 22,216 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/develop-build_test_deployrecipe.yml
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 }}

21 changes: 21 additions & 0 deletions .github/workflows/topics-build_test.yml
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 }}
44 changes: 44 additions & 0 deletions .gitignore
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
3 changes: 3 additions & 0 deletions .gitmodules
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
Loading

0 comments on commit 80589bf

Please sign in to comment.