diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-01-27 14:50:52 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-01-28 11:21:10 -0800 |
commit | d54c26e627d4a901edbfdf481960138bcb29be22 (patch) | |
tree | 0c92dec5c70fa059d0022cd3dfc4a5057915694b /.github/workflows | |
parent | f424f9292e08d9fd90225d2c0b416b5d537a1c58 (diff) | |
download | subsurface-d54c26e627d4a901edbfdf481960138bcb29be22.tar.gz |
GitHub Actions: remove outdated libdivecomputer header files
We never noticed this before, but during the build of the Trusty Qt5.12
container itself we create libdivecomputer include files and we ship them with
the container. And as the recent build failures after an incompatible API
change in libdivecomputer show, those include files are apparently used in this
build, not the ones that are newly created during the build.
Obviously the build container needs to be fixed, but as a quick workaround,
this should do.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/linux-trusty-5.12.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/linux-trusty-5.12.yml b/.github/workflows/linux-trusty-5.12.yml index 18dfc9ab1..f0dba517d 100644 --- a/.github/workflows/linux-trusty-5.12.yml +++ b/.github/workflows/linux-trusty-5.12.yml @@ -20,6 +20,7 @@ jobs: - name: run build run: | cd .. + rm -rf /install-root/include/libdivecomputer bash -x subsurface/.github/workflows/scripts/linux-in-container-build.sh - name: create CI release |