Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
martynvdijke committed May 18, 2021
2 parents 0719b94 + e5f8dcb commit 54141fe
Show file tree
Hide file tree
Showing 343 changed files with 50,066 additions and 8,900 deletions.
Empty file added .github/dependabot.yml
Empty file.
17 changes: 17 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- security
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
49 changes: 0 additions & 49 deletions .github/workflows/cmake_debug.yml

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/dev_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: dev build status

on:
push:
branches:
- dev

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Debug

jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: runner-gr-lora_sdr

steps:
- uses: actions/checkout@v2
with:
ref: dev

- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
run: cmake -E make_directory ${{runner.workspace}}/dev/build

- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
shell: bash
working-directory: ${{runner.workspace}}/dev/build
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE

- name: Build
working-directory: ${{runner.workspace}}/dev/build
shell: bash
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build . --config $BUILD_TYPE

- name: Remove build dir
working-directory: ${{runner.workspace}}
shell: bash
run: |
rm -rf dev
57 changes: 57 additions & 0 deletions .github/workflows/dev_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: dev test status

on:
push:
branches:
- dev

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Debug

jobs:
test:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: runner-gr-lora_sdr

steps:
- uses: actions/checkout@v2
with:
ref: dev

- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
run: cmake -E make_directory ${{runner.workspace}}/dev-test/build

- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
shell: bash
working-directory: ${{runner.workspace}}/dev-test/build
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE

- name: Build
working-directory: ${{runner.workspace}}/dev-test/build
shell: bash
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build . --config $BUILD_TYPE

- name: Test
working-directory: ${{runner.workspace}}/dev-test/build
shell: bash
# Execute tests defined by the CMake configuration.
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
run: ctest -V $BUILD_TYPE

- name: Remove build dir
working-directory: ${{runner.workspace}}
shell: bash
run: |
rm -rf dev-test
70 changes: 70 additions & 0 deletions .github/workflows/docs_dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: docs-dev

on:
push:
branches:
- dev

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Debug

jobs:
docs:
runs-on: runner-gr-lora_sdr

steps:
- uses: actions/checkout@v2
with:
ref: dev

- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
run: cmake -E make_directory ${{runner.workspace}}/dev-docs/build

- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
shell: bash
working-directory: ${{runner.workspace}}/dev-docs/build
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE

- name: Make documentation
working-directory: ${{runner.workspace}}/dev-docs/build
shell: bash
run: cmake --build . --config $BUILD_TYPE
#run : make doc

- name: Checkout gh-pages
uses: actions/checkout@v2
with:
ref: gh-pages
path: "gh-pages"

- name: Move gh-pages
working-directory: ${{runner.workspace}}
#move to folder up for easy use
run: |
mv gr-lora_sdr/gh-pages/ .
##rm -rf gr-lora_sdr/gh-pages/

- name: Add new exported documentation and push to gh-pages branch
working-directory: ${{runner.workspace}}
run: |
cp -r ${{runner.workspace}}/dev-docs/build/docs/doxygen/html ${{runner.workspace}}/gh-pages/
cd ${{runner.workspace}}/gh-pages/
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Automatically updated the wiki" && git push
cd ../ && rm -rf gh-pages
- name: Remove build dir
working-directory: ${{runner.workspace}}
shell: bash
run: |
rm -rf dev-docs
13 changes: 0 additions & 13 deletions .github/workflows/greetings.yml

This file was deleted.

45 changes: 45 additions & 0 deletions .github/workflows/master_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: master build status

on:
push:
branches:
- master

env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release

jobs:
build:
# The CMake configure and build commands are platform agnostic and should work equally
# well on Windows or Mac. You can convert this to a matrix build if you need
# cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: runner-gr-lora_sdr

steps:
- uses: actions/checkout@v2
with:
ref: dev
path: dev

- name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands
run: cmake -E make_directory ${{runner.workspace}}/dev/build

- name: Configure CMake
# Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system
shell: bash
working-directory: ${{runner.workspace}}/dev/build
# Note the current convention is to use the -S and -B options here to specify source
# and build directories, but this is only available with CMake 3.13 and higher.
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE

- name: Build
working-directory: ${{runner.workspace}}/dev/build
shell: bash
# Execute the build. You can specify a specific target with "--target <NAME>"
run: cmake --build . --config $BUILD_TYPE
Loading

0 comments on commit 54141fe

Please sign in to comment.