Skip to content

Commit

Permalink
Update Ubuntu Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ddeclerck committed Jan 19, 2025
1 parent 6efdaba commit 153cd88
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install automake libtool libdb5.3-dev libxml2-dev libcjson-dev \
bison flex help2man gettext texlive
bison flex help2man gettext texlive autopoint
- name: Installing VISAM prerequisite
if: ${{ matrix.isam == 'visam' }}
Expand All @@ -52,7 +52,7 @@ jobs:
- name: Bootstrap
run: |
./build_aux/bootstrap
./build_aux/bootstrap install
# FIXME: With TERM="dumb" `make check` fails with:
# ...
Expand Down Expand Up @@ -146,7 +146,10 @@ jobs:
coverage:
name: Coverage and Warnings
runs-on: ubuntu-latest
# Since the latest Ubuntu image, lcov fails complaining about negative branch counts,
# and using fprofile-update=atomic as suggested does not help, so use the previous image
# runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout code
Expand All @@ -156,11 +159,11 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get install automake libtool libdb5.3-dev libxml2-dev \
libcjson-dev bison flex help2man gettext lcov
libcjson-dev bison flex help2man gettext lcov autopoint
- name: Bootstrap
run: |
./build_aux/bootstrap
./build_aux/bootstrap install
- name: Build environment setup
run: |
Expand Down
2 changes: 1 addition & 1 deletion tests/testsuite.src/run_misc.at
Original file line number Diff line number Diff line change
Expand Up @@ -11289,7 +11289,7 @@ CAPI(void *p1, ...)
{
int k,nargs,type,digits,scale,size,sign,byvalue,isright;
cob_s64_t val;
char *str, wrk[80],pic[24];
char *str, wrk[80],pic[30];

nargs = cob_get_num_params();
if ((k = cob_get_name_line (wrk, NULL)) > 0) {
Expand Down

0 comments on commit 153cd88

Please sign in to comment.