Skip to content

Commit

Permalink
Update .gitpod.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GitMensch authored Nov 25, 2024
1 parent f2e71f2 commit 929f8be
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,49 +3,52 @@ image: gitpod/workspace-c

tasks:

- name: setup coding environment on Ubuntu 20.04
- name: setup coding environment on Ubuntu 22.04
before: |
# note: sadly we need this to be done every time as only /workspace is kept, but linked
# against those dependencies; and also we do want to recompile after adjustments
# this can all be dropped as soon as we would use a prepared docker
sudo apt update && sudo apt upgrade -y
sudo apt install -y build-essential libgmp-dev libdb-dev libjson-c-dev ncurses-dev libxml2-dev \
automake libtool flex bison help2man texinfo \
lcov
# sudo apt install gettext texlive-base # for make dist (po/*, doc/gnucobol.pdf)
automake libtool flex bison help2man gettext texinfo \
lcov \
clangd bear
# sudo apt install texlive-base # for make dist (doc/gnucobol.pdf)
gp sync-done system-prepare
- name: building GnuCOBOL
init: |
mkdir -p $GITPOD_REPO_ROOTS/_build
cd $GITPOD_REPO_ROOTS/_build
mkdir -p $GITPOD_REPO_ROOTS/build
cd $GITPOD_REPO_ROOTS/build
gp sync-await system-prepare
../autogen.sh
../configure --enable-cobc-internal-checks --enable-debug --enable-code-coverage
make --jobs=$(nproc)
../configure --enable-cobc-internal-checks --enable-debug --enable-code-coverage \
CC="gcc -std=c89" CPPFLAGS="-Werror=declaration-after-statement"
bear -- make --jobs=$(nproc)
command: |
cd $GITPOD_REPO_ROOTS/_build
cd $GITPOD_REPO_ROOTS/build
gp sync-done build-finish
- name: running GnuCOBOL tests with coverage
command: |
gp sync-await build-finish
cd $GITPOD_REPO_ROOTS/_build
cd $GITPOD_REPO_ROOTS/build
half_jobs=$(( $(nproc) / 2 ))
nice make --jobs=${half_jobs} check-code-coverage TESTSUITEFLAGS="--jobs=${half_jobs}"
- name: running NIST85 tests
command: |
gp sync-await build-finish
cd $GITPOD_REPO_ROOTS/_build
cd $GITPOD_REPO_ROOTS/build
half_jobs=$(( $(nproc) / 2 ))
nice make -C tests/cobol85 --jobs=${half_jobs} test
# disabled as the download takes too long
# disabled as running that is really only useful *after*
# several adjustments to the build system -> manually
#- name: running GnuCOBOL distribution tests with testuite
# command: |
# gp sync-await build-finish
# cd $GITPOD_REPO_ROOTS/_build
# cd $GITPOD_REPO_ROOTS/build
# half_jobs=$(( $(nproc) / 2 ))
# nice make --jobs=${half_jobs} distcheck TESTSUITEFLAGS="--jobs=${half_jobs}"

Expand All @@ -58,3 +61,4 @@ vscode:
- tenninebt.vscode-koverage
- meronz.manpages
- webfreak.debug
- OCamlPro.SuperBOL

0 comments on commit 929f8be

Please sign in to comment.