Skip to content

Commit

Permalink
Merge pull request #449 from antonvw/develop
Browse files Browse the repository at this point in the history
Merge version 23.10
  • Loading branch information
antonvw authored Sep 24, 2023
2 parents 9e715ec + 2292e5a commit a26da66
Show file tree
Hide file tree
Showing 348 changed files with 6,818 additions and 3,890 deletions.
1 change: 0 additions & 1 deletion .ci-ignore

This file was deleted.

54 changes: 48 additions & 6 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,60 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: recursive

- name: Install boost and gtk3
run: sudo apt-get update && sudo apt-get install -yq libboost-all-dev liblzma5 libjbig0 libgtk-3-dev
- name: Install boost
uses: MarkusJx/[email protected]
id: install-boost
with:
# REQUIRED: Specify the required boost version
# A list of supported versions can be found here:
# https://github.com/actions/boost-versions/blob/main/versions-manifest.json
boost_version: 1.81.0
# OPTIONAL: Specify a platform version
platform_version: 20.04

- name: Install gtk
run: sudo apt-get update && sudo apt-get install liblzma5 libjbig0 libgtk-3-dev

- name: Install gcc, lcov, gdb
run: sudo apt-get install -yq gcc-12 g++-12 lcov gdb

- name: Install gcc-11
run: sudo apt-get install -yq gcc-11 g++-11
- name: Install xvfb to allow headless tests
run: sudo apt-get install xvfb

- name: Install coveralls
run: sudo curl -L https://coveralls.io/coveralls-linux.tar.gz | tar -xz -C /usr/local/bin

- name: Install robotframework
run: sudo pip install robotframework

- name: Configure
run: export CC=gcc-11 && export CXX=g++-11 && mkdir build && cd build && cmake ..
# adding -DwexBUILD_SAMPLES=ON should result in app running,
# but then the headless test keeps on running
run: export CC=gcc-12 && export CXX=g++-12 && mkdir build && cd build &&
cmake
-DCMAKE_BUILD_TYPE=Coverage
-DwexGCOV=gcov-12
-DwexBUILD_TESTS=ON
-DwexBUILD_GITHUB=ON
-DBoost_INCLUDE_DIR=${{steps.install-boost.outputs.BOOST_ROOT}}/include
-DBoost_LIBRARY_DIRS=${{steps.install-boost.outputs.BOOST_ROOT}}/lib
..
env:
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}

- name: Make
run: cd build && make

- name: Headless Test
run: cd build &&
make lcov-prep &&
xvfb-run --auto-servernum ctest -VV &&
make lcov

- name: Coveralls
run: cd build && coveralls -r 9vV6skuIGeagBBkz5TCZNI12ezUv12gOj --format=lcov --file=src/app.run
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
build/
*.html
*.xml
Loading

0 comments on commit a26da66

Please sign in to comment.