Skip to content

Commit ac9f8cf

Browse files
authored
Merge pull request #8 from drroe/fixworkflow
Try to fix the merge gate
2 parents 1fd00d4 + 209676f commit ac9f8cf

3 files changed

Lines changed: 32 additions & 47 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: C/C++ CI
1+
name: CreateRemdDirs Tests
22

33
on:
44
push:
@@ -7,15 +7,33 @@ on:
77
branches: [ master ]
88

99
jobs:
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+

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# CreateRemdDirs
22
Automatically 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+
48
About CreateRemdDirs
59
====================
610
CreateRemdDirs can be used to automatically generate input for running REMD,

src/.github/workflows/merge-gate.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)