Skip to content

Commit c7b9fa4

Browse files
[#50] Add CI for NIST COBOL85 test
1 parent 6f3a875 commit c7b9fa4

File tree

2 files changed

+348303
-0
lines changed

2 files changed

+348303
-0
lines changed

.github/workflows/workflow.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: NIST COBOL85 tests
2+
on: [push]
3+
jobs:
4+
check-bats-version:
5+
runs-on: ubuntu-latest
6+
steps:
7+
# Checkout opensource COBOL
8+
- name: Checkout opensource COBOL
9+
uses: actions/checkout@v2
10+
11+
- name: Install dependencies
12+
run: |
13+
sudo apt-get update
14+
sudo apt-get install -y build-essential libncurses5 libncurses5-dev libgmp-dev bison flex gettext automake autoconf
15+
16+
- name: Install opensource COBOL
17+
run: |
18+
cd vbisam
19+
./configure --prefix=/usr/
20+
sudo make install
21+
cd ../
22+
./configure --prefix=/usr/ --with-vbisam
23+
sudo make install
24+
25+
- name: run NIST tests
26+
run: |
27+
cd tests/cobol85
28+
make test
29+
30+
31+

0 commit comments

Comments
 (0)