Skip to content

Commit

Permalink
Update autotools and fix code coverage issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
schweikert committed Feb 6, 2022
1 parent c67f6de commit ae49f4d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
- name: Build
run: |
ci/build-1-autotools.sh
ci/build-4-compile.sh
ci/test-tarball.sh
- name: Test
run: |
Expand Down Expand Up @@ -68,6 +70,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: lcov.info
flag-name: macos
parallel: true

Coveralls-Finish:
needs: [Test-Linux, Test-Mac]
Expand Down
11 changes: 7 additions & 4 deletions ci/build-1-autotools.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
#!/bin/bash -e
#!/bin/bash

set -e
set -x

if [[ "$OSTYPE" == "darwin"* ]]; then
exit 0
fi

AUTOCONF=http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
AUTOMAKE=http://ftp.gnu.org/gnu/automake/automake-1.14.1.tar.gz
LIBTOOL=http://alpha.gnu.org/gnu/libtool/libtool-2.4.2.418.tar.gz
AUTOCONF=http://ftp.gnu.org/gnu/autoconf/autoconf-2.71.tar.gz
AUTOMAKE=http://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.gz
LIBTOOL=http://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz
PREFIX=$(pwd)/ci/build
PATH=$(pwd)/ci/build/bin:$PATH

Expand Down

0 comments on commit ae49f4d

Please sign in to comment.