Skip to content

Commit

Permalink
Merge pull request #30 from njoy/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
whaeck authored Jul 19, 2021
2 parents 5010a98 + 2283484 commit e481b0e
Show file tree
Hide file tree
Showing 52 changed files with 289 additions and 3,531 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/ContinuousIntegration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
name: Continuous Integration

# This workflow is triggered on pushes and pull requests to the repository.
on:
# This workflow will also run each Monday on the default branch (i.e. master)
on:
schedule:
- cron: '0 0 * * 1'
push:
branches: '**'
pull_request:
pull_request:
branches: 'master'

jobs:
Expand All @@ -14,19 +17,19 @@ jobs:
strategy:
matrix:
os: [ ubuntu-18.04, macos-10.15 ]
cxx: [ g++-9, clang++ ]
cxx: [ clang++, g++-9 ]
build_type: [ Debug, Release ]

steps:
- name: which CXX
run: |
which ${{matrix.cxx}}
which ${{matrix.cxx}}
${{matrix.cxx}} --version
- uses: actions/checkout@v2
- name: mkdir bin
run: mkdir bin
run: mkdir bin
- name: cmake
run: cmake -D CMAKE_CXX_COMPILER=`which ${{matrix.cxx}}` -D CMAKE_BUILD_TYPE=${{matrix.build_type}} ..
run: cmake -D CMAKE_CXX_COMPILER=`which ${{matrix.cxx}}` -D CMAKE_BUILD_TYPE=${{matrix.build_type}} ..
working-directory: ./bin
- name: make
run: make -j2
Expand Down
46 changes: 43 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
bin/
subprojects/
__pycache__/
# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app

bin
build
subprojects
dependencies

# emacs
*~
\#*\#
.\#*

# python
__pycache__
*.pyc
24 changes: 0 additions & 24 deletions .gitmodules

This file was deleted.

49 changes: 0 additions & 49 deletions .travis.yml

This file was deleted.

90 changes: 0 additions & 90 deletions .travis/build.sh

This file was deleted.

29 changes: 0 additions & 29 deletions .travis/signature.sh

This file was deleted.

Loading

0 comments on commit e481b0e

Please sign in to comment.