diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-12-10 16:32:02 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-17 09:17:54 -0800 |
commit | c5074c8af50c492c5b500c265477a8d7b40681f7 (patch) | |
tree | 1232063f996080a7610693eb3a5c782a263b1091 | |
parent | 4070c765015d8ba1a4eef5ccb31e689f13ace342 (diff) | |
download | subsurface-c5074c8af50c492c5b500c265477a8d7b40681f7.tar.gz |
build-system/Android: work around missing C compiler in our build container
This of course needs to be fixed in the build container itself, but
for now this might be enough to make progress.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | .github/workflows/android.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index c367bcff1..a35a93357 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -32,5 +32,8 @@ jobs: ls -l git config --global user.email "ci@subsurface-divelog.org" git config --global user.name "Subsurface CI" + # it turns out our build container doesn't have a native compiler + # yet ECM needs that + apt-get install --reinstall cpp-7 gcc-7-base libgcc-7-dev libcc1-0 gcc-7 bash -x ./subsurface/packaging/android/qmake-build.sh |