Skip to content

Commit 37a6aa5

Browse files
Add .gitignore and ci.yml (#56)
1 parent 93def13 commit 37a6aa5

File tree

9 files changed

+74
-0
lines changed

9 files changed

+74
-0
lines changed

.github/workflows/ci.yml

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

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Makefile
2+
config.h
3+
config.log
4+
config.status
5+
defaults.h
6+
libtool
7+
stamp-h1

bin/.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.deps/
2+
.libs/
3+
Makefile
4+
cob-config
5+
cobcrun
6+
cobcrun-cobcrun.o

cobc/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.o
2+
Makefile
3+
cobc
4+
.deps

lib/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.deps/
2+
Makefile
3+
dummymac.o
4+
libsupport.a

libcob/.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.lo
2+
*.o
3+
*.la
4+
.deps
5+
.libs
6+
Makefile

po/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Makefile
2+
Makefile.in
3+
POTFILES
4+
opensource-cobol-1.5.2J.pot
5+
remove-potcdate.sed

tests/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Makefile
2+
atconfig
3+
atlocal
4+
cobol85/Makefile
5+
jp-compat.log

texi/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Makefile

0 commit comments

Comments
 (0)