From 76c383806a58ef2e8126bb9fbda6596814290607 Mon Sep 17 00:00:00 2001 From: Yutaro Sakamoto Date: Sat, 25 May 2024 12:18:03 +0900 Subject: [PATCH 1/3] [Add]: add a workflow file --- .github/workflows/ci.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..f672a577 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,36 @@ +name: COBOL85 tests + +on: + push: + pull_request: + types: [opened, reopened, review_requested] + +permissions: + contents: read + +jobs: + run-tests: + runs-on: ubuntu-latest + steps: + # Checkout opensource COBOL + - name: Checkout opensource COBOL + uses: actions/checkout@v2 + + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y build-essential libncurses-dev libgmp-dev bison flex gettext automake autoconf + + - name: Install opensource COBOL + run: | + cd vbisam + ./configure --prefix=/usr/ + sudo make install + cd ../ + ./configure --prefix=/usr/ --with-vbisam + sudo make install + + - name: run NIST tests + run: | + cd tests/cobol85 + make test \ No newline at end of file From 145d3e0ff07fa4c11a35b7ef633e7795aace091f Mon Sep 17 00:00:00 2001 From: Yutaro Sakamoto Date: Sat, 25 May 2024 12:30:28 +0900 Subject: [PATCH 2/3] [Add]: add .gitignore --- .gitignore | 7 +++++++ bin/.gitignore | 6 ++++++ cobc/.gitignore | 4 ++++ lib/.gitignore | 4 ++++ libcob/.gitignore | 6 ++++++ po/.gitignore | 5 +++++ tests/.gitignore | 5 +++++ texi/.gitignore | 1 + 8 files changed, 38 insertions(+) create mode 100644 .gitignore create mode 100644 bin/.gitignore create mode 100644 cobc/.gitignore create mode 100644 lib/.gitignore create mode 100644 libcob/.gitignore create mode 100644 po/.gitignore create mode 100644 tests/.gitignore create mode 100644 texi/.gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..2f815a90 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +Makefile +config.h +config.log +config.status +defaults.h +libtool +stamp-h1 diff --git a/bin/.gitignore b/bin/.gitignore new file mode 100644 index 00000000..69deeae1 --- /dev/null +++ b/bin/.gitignore @@ -0,0 +1,6 @@ +.deps/ +.libs/ +Makefile +cob-config +cobcrun +cobcrun-cobcrun.o diff --git a/cobc/.gitignore b/cobc/.gitignore new file mode 100644 index 00000000..7e33520d --- /dev/null +++ b/cobc/.gitignore @@ -0,0 +1,4 @@ +*.o +Makefile +cobc +.deps diff --git a/lib/.gitignore b/lib/.gitignore new file mode 100644 index 00000000..ee7ce6e6 --- /dev/null +++ b/lib/.gitignore @@ -0,0 +1,4 @@ +.deps/ +Makefile +dummymac.o +libsupport.a diff --git a/libcob/.gitignore b/libcob/.gitignore new file mode 100644 index 00000000..20cc49cf --- /dev/null +++ b/libcob/.gitignore @@ -0,0 +1,6 @@ +*.lo +*.o +*.la +.deps +.libs +Makefile diff --git a/po/.gitignore b/po/.gitignore new file mode 100644 index 00000000..e58f4d99 --- /dev/null +++ b/po/.gitignore @@ -0,0 +1,5 @@ +Makefile +Makefile.in +POTFILES +opensource-cobol-1.5.2J.pot +remove-potcdate.sed diff --git a/tests/.gitignore b/tests/.gitignore new file mode 100644 index 00000000..46f3eeb2 --- /dev/null +++ b/tests/.gitignore @@ -0,0 +1,5 @@ +Makefile +atconfig +atlocal +cobol85/Makefile +jp-compat.log diff --git a/texi/.gitignore b/texi/.gitignore new file mode 100644 index 00000000..f3c7a7c5 --- /dev/null +++ b/texi/.gitignore @@ -0,0 +1 @@ +Makefile From 5e9143bfce9cda640135df8dae8d3221dcb555f0 Mon Sep 17 00:00:00 2001 From: Yutaro Sakamoto Date: Sat, 25 May 2024 12:31:57 +0900 Subject: [PATCH 3/3] [Update]: remove tests in ci.yml temporarily --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f672a577..248e8e6f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: ./configure --prefix=/usr/ --with-vbisam sudo make install - - name: run NIST tests - run: | - cd tests/cobol85 - make test \ No newline at end of file + #- name: run NIST tests + # run: | + # cd tests/cobol85 + # make test \ No newline at end of file