Skip to content

Add .gitignore and ci.yml #1

Add .gitignore and ci.yml

Add .gitignore and ci.yml #1

Workflow file for this run

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