File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : C/C++ CI
1+ name : CreateRemdDirs Tests
22
33on :
44 push :
77 branches : [ master ]
88
99jobs :
10- build :
11-
10+ linux_build :
1211 runs-on : ubuntu-latest
12+ name : Build
13+ strategy :
14+ fail-fast : false
15+ matrix :
16+ compiler : ["gnu", "clang"]
17+
18+ env :
19+ COMPILER : ${{ matrix.compiler }}
20+ BUILD_TYPE : " install"
21+ TEST_TYPE : " test"
1322
1423 steps :
15- - uses : actions/checkout@v2
16- - name : configure
17- run : ./configure
18- - name : make install
19- run : make install
20- - name : make test
21- run : make test
24+ - name : Install prerequisite packages
25+ run : |
26+ sudo apt-get install libnetcdf-dev \
27+ netcdf-bin \
28+ clang
29+
30+ - name : Checkout source code
31+ uses : actions/checkout@v2
32+
33+ - name : Compile and test CreateRemdDirs
34+ shell : bash -lex {0}
35+ run : |
36+ ./configure ${COMPILER}
37+ make -j2 install
38+ make $TEST_TYPE
39+
Original file line number Diff line number Diff line change 11# CreateRemdDirs
22Automatically generate input for running M-REMD simulations (and more) in Amber.
33
4+ Build Status
5+ ============
6+ * GitHub Actions: [ ![ GitHub Actions Status] ( https://github.com/drroe/CreateRemdDirs/actions/workflows/c-cpp.yml/badge.svg )] ( https://github.com/drroe/CreateRemdDirs/actions )
7+
48About CreateRemdDirs
59====================
610CreateRemdDirs can be used to automatically generate input for running REMD,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments