2021-03-31 16:06:35 +00:00
|
|
|
name: Ubuntu 18.04 / Qt 5.9--
|
2019-10-26 01:04:01 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
2019-10-19 02:15:15 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
buildOnBionic:
|
|
|
|
runs-on: ubuntu-18.04
|
2020-02-03 23:45:06 +00:00
|
|
|
container:
|
|
|
|
image: ubuntu:18.04 # yes, this looks redundant, but something is messed up with their Ubuntu image that causes our builds to fail
|
2019-10-19 02:15:15 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: checkout sources
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: add build dependencies
|
|
|
|
run: |
|
2020-02-03 23:45:06 +00:00
|
|
|
apt update
|
|
|
|
apt install -y \
|
2019-10-19 02:15:15 +00:00
|
|
|
autoconf automake cmake g++ git libcrypto++-dev libcurl4-gnutls-dev \
|
|
|
|
libgit2-dev libqt5qml5 libqt5quick5 libqt5svg5-dev \
|
|
|
|
libqt5webkit5-dev libsqlite3-dev libssh2-1-dev libssl-dev libssl-dev \
|
|
|
|
libtool libusb-1.0-0-dev libxml2-dev libxslt1-dev libzip-dev make \
|
|
|
|
pkg-config qml-module-qtlocation qml-module-qtpositioning \
|
|
|
|
qml-module-qtquick2 qt5-default qt5-qmake qtchooser qtconnectivity5-dev \
|
|
|
|
qtdeclarative5-dev qtdeclarative5-private-dev qtlocation5-dev \
|
|
|
|
qtpositioning5-dev qtscript5-dev qttools5-dev qttools5-dev-tools \
|
2021-01-08 20:53:27 +00:00
|
|
|
qtquickcontrols2-5-dev xvfb libbluetooth-dev libmtp-dev
|
2019-10-19 02:15:15 +00:00
|
|
|
|
2024-01-05 04:44:31 +00:00
|
|
|
- name: store dummy version and build number for pull request
|
|
|
|
if: github.event_name == 'pull_request'
|
|
|
|
run: |
|
|
|
|
echo "6.0.100" > latest-subsurface-buildnumber
|
|
|
|
|
2020-01-01 18:52:53 +00:00
|
|
|
- name: build Subsurface
|
2022-05-13 18:33:05 +00:00
|
|
|
env:
|
|
|
|
SUBSURFACE_REPO_PATH: ${{ github.workspace }}
|
2020-01-01 18:52:53 +00:00
|
|
|
run: |
|
|
|
|
cd ..
|
2022-05-13 18:33:05 +00:00
|
|
|
git config --global --add safe.directory ${SUBSURFACE_REPO_PATH}
|
|
|
|
git config --global --add safe.directory ${SUBSURFACE_REPO_PATH}/libdivecomputer
|
2020-01-01 18:52:53 +00:00
|
|
|
bash -x subsurface/scripts/build.sh -desktop -build-with-webkit
|
|
|
|
|
|
|
|
- name: test desktop build
|
2019-10-19 02:15:15 +00:00
|
|
|
run: |
|
2019-12-27 19:21:09 +00:00
|
|
|
# and now run the tests - with Qt 5.9 we can only run the desktop flavor
|
|
|
|
echo "------------------------------------"
|
|
|
|
echo "run tests"
|
2020-10-24 17:28:19 +00:00
|
|
|
cd build/tests
|
2020-11-12 19:18:02 +00:00
|
|
|
# xvfb-run --auto-servernum ./TestGitStorage -v2
|
2019-12-27 19:21:09 +00:00
|
|
|
xvfb-run --auto-servernum make check
|