Add: CANCEL ALL testcase #34
This file contains 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: test | |
on: | |
push: | |
pull_request: | |
types: [opened, reopened, review_requested, synchronize] | |
env: | |
CPPFLAGS: "-I/usr/include" | |
LDFLAGS: "-L/usr/lib" | |
LD_LAIBRARY_PATH: "/usr/lib" | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install prerequisite softwares | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y libncurses6 libncurses-dev ncurses-doc libgmp10 libgmp-dev m4 libtool help2man pkg-config gettext automake autoconf libxml2 libxml2-dev libxml2-utils libcjson1 libcjson-dev build-essential libdb-dev | |
- uses: actions/checkout@v4 | |
# Cache the directory 'opensource-cobol-1.5.2J/vbisam' | |
- name: Cache vbisam | |
id: vbisam_cache_id | |
uses: actions/cache@v4 | |
with: | |
path: opensource-cobol/vbisam | |
key: vbisam-key | |
# Download vbisam and Build it | |
- name: Download vbisam and Build it | |
if: steps.vbisam_cache_id.outputs.cache-hit != 'true' | |
run: | | |
curl -L -o opensource-cobol-1.5.2J.tar.gz https://github.com/opensourcecobol/opensource-cobol/archive/refs/tags/v1.5.2J.tar.gz | |
tar zxf opensource-cobol-1.5.2J.tar.gz | |
cd opensource-cobol-1.5.2J/vbisam | |
./configure --prefix=/usr/ | |
make | |
# Install vbisam | |
- name: Install vbisam | |
working-directory: opensource-cobol-1.5.2J/vbisam | |
run: | | |
sudo make install | |
- name: Install GnuCOBOL | |
run: | | |
./configure --prefix=/usr/ --with-xml2 --with-cjson --with-vbisam | |
make | |
sudo make install | |
- name: Run custom tests | |
run: | | |
export TERM=xterm | |
make check | |
- name: Run COBOL85 tests | |
run: | | |
make test |