[WIP] Add a settings file to configure cobc at runtime #449
Workflow file for this run
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: Windows Workflow | |
on: | |
pull_request: | |
branches: [ gcos4gnucobol-3.x ] | |
push: | |
branches: [ gcos4gnucobol-3.x ] | |
# manual run in actions tab - for all branches | |
# workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install packages | |
uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
install: autoconf automake libtool make mingw-w64-x86_64-db mingw-w64-x86_64-gmp libdb-devel mingw-w64-x86_64-gcc flex bison gmp-devel help2man texinfo gettext-devel | |
- name: Set git user | |
run: | | |
git config --global user.name github-actions | |
git config --global user.email [email protected] | |
- name: bootstrap | |
run: | | |
./autogen.sh | |
autoconf | |
autoreconf --install --force | |
shell: msys2 {0} | |
- name: Build environment setup | |
run: | | |
mkdir _build | |
shell: msys2 {0} | |
- name: configure | |
run: | | |
cd _build | |
../configure --enable-cobc-internal-checks --enable-hardening --prefix /opt/cobol/gnucobol-gcos --exec-prefix /opt/cobol/gnucobol-gcos | |
shell: msys2 {0} | |
- name: Upload config.log | |
uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: config.log | |
path: _build/config.log | |
- name: make | |
run: | | |
cd _build | |
make --jobs=$(($(nproc)+1)) | |
shell: msys2 {0} | |
- name: install | |
run: | | |
cd _build | |
make install | |
find /opt/cobol > install.log | |
shell: msys2 {0} | |
- name: Upload install.log | |
uses: actions/upload-artifact@v3 | |
with: | |
name: install.log | |
path: _build/install.log | |
- name: check | |
continue-on-error: true | |
run: | | |
cd _build/tests | |
make check TESTSUITEFLAGS="--jobs=$(($(nproc)+1))" || (echo "not all tests passed") | |
make test | |
shell: msys2 {0} | |
- name: Upload testsuite.log | |
uses: actions/upload-artifact@v3 | |
with: | |
name: testsuite.log | |
path: _build/tests/testsuite.log |