-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create ContinuousIntegration.yml (#124) * Adding GCC pragma back in to make GCC compile in release mode. * Fixes to issues #106 and #116. * ContinuousIntegration make is now verbose (sorry). * Fixing up some command-line flags. * Removing signature command-line option. This addresses issue #125. * Put command line option in wrong place. * Adding catch-adapter to target_link_libraries of select tests. * Adding catch-adapter to njoy21 library * Changing to g++-8 (#135) * Update installation hyperlink in readme (#134) * Updating ReleaseNotes. Co-authored-by: Nick Touran <contact@partofthething.com>
- Loading branch information
1 parent
d40447f
commit 84d6f4f
Showing
16 changed files
with
66 additions
and
29 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,42 @@ | ||
# GitHub workflow to enable continuous integration | ||
name: Continuous Integration | ||
|
||
# This workflow is triggered on pushes and pull requests to the repository. | ||
on: | ||
push: | ||
branches: '**' | ||
pull_request: | ||
branches: 'master' | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{matrix.os}} | ||
strategy: | ||
matrix: | ||
os: [ ubuntu-18.04, macos-10.15 ] | ||
cxx: [ g++-8, clang++ ] | ||
vFortran: [ gfortran-8 ] | ||
build_type: [ Debug, Release ] | ||
|
||
steps: | ||
- name: which CXX | ||
run: | | ||
which ${{matrix.cxx}} | ||
${{matrix.cxx}} --version | ||
- name: which gfortran | ||
run: | | ||
which ${{matrix.vFortran}} | ||
${{matrix.vFortran}} --version | ||
- uses: actions/checkout@v2 | ||
- name: mkdir bin | ||
run: mkdir bin | ||
- name: cmake | ||
run: cmake -D CMAKE_Fortran_COMPILER=`which ${{matrix.vFortran}}` -D CMAKE_CXX_COMPILER=`which ${{matrix.cxx}}` -D CMAKE_BUILD_TYPE=${{matrix.build_type}} .. | ||
working-directory: ./bin | ||
- name: make | ||
run: make -j2 VERBOSE=1 | ||
working-directory: ./bin | ||
- name: ctest | ||
run: ctest -j2 -R njoy21* | ||
working-directory: ./bin | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
subprojects | ||
bin | ||
bin* | ||
build | ||
__pycache__ | ||
*.pyc | ||
|
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
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
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
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
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