Add .gitignore and ci.yml #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |