aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2021-01-02 10:20:44 +0100
committerGitHub <noreply@github.com>2021-01-02 10:20:44 +0100
commit4831b613331095112fb31ea50394b53d5721084b (patch)
treed2eb44115812fd73ab1559ed0294758946b536ab
parent23cf8bec21c8ea31be90822143db82a60b46e7bb (diff)
parent10ba44adf1f782a62ff9d30b929554057c35b00f (diff)
downloadlibquotient-4831b613331095112fb31ea50394b53d5721084b.tar.gz
libquotient-4831b613331095112fb31ea50394b53d5721084b.zip
Merge pull request #434 from quotient-im/kitsune-gha-ci
Migrate to GitHub Actions
-rw-r--r--.github/workflows/ci.yml107
1 files changed, 80 insertions, 27 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 03909550..c5f02a03 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,36 +1,42 @@
-name: CMake
+name: CI
-on: [push]
-
-env:
- # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
- BUILD_TYPE: RelWithDebInfo
+on:
+ push:
+ pull_request:
+ types: [opened, reopened]
defaults:
run:
shell: bash
jobs:
- build:
+ CI:
runs-on: ${{ matrix.os }}
strategy:
+ fail-fast: false
max-parallel: 1
matrix:
os: [ubuntu-18.04, macos-10.15]
-# e2ee: [false, true]
- compiler: [gcc, clang]
+ compiler: [ GCC, Clang ]
+ # Not using binary values here, to make the job captions more readable
+ e2ee: [ '', 'E2EE' ]
+ update-api: [ '', 'update-api' ]
exclude:
- os: macos-10.15
- compiler: gcc
+ compiler: GCC
+ - e2ee: '' # Somewhat reduce the number of combinations to check
+ update-api: 'update-api'
steps:
- uses: actions/checkout@v2
+ with:
+ submodules: ${{ matrix.e2ee != '' }}
- name: Cache Qt
id: cache-qt
uses: actions/cache@v2
with:
- path: ../Qt
+ path: ${{ runner.workspace }}/Qt
key: ${{ runner.os }}-QtCache
- name: Install Qt
@@ -39,21 +45,68 @@ jobs:
version: '5.9.9'
cached: ${{ steps.cache-qt.outputs.cache-hit }}
- - name: Create Build Environment
- run: cmake -E make_directory ${{runner.workspace}}/build
+ - name: Install Valgrind
+ if: contains(matrix.os, 'ubuntu')
+ run: |
+ sudo apt-get install valgrind
+ echo "VALGRIND=valgrind --tool=memcheck --leak-check=yes --gen-suppressions=all --suppressions=tests/.valgrind.supp" >>$GITHUB_ENV
+
+ - name: Setup build environment
+ run: |
+ if [ "${{ matrix.compiler }}" == "GCC" ]; then
+ if [ -n "${{ matrix.update-api }}" ]; then VERSION_POSTFIX='-8'; fi
+ echo "CC=gcc$VERSION_POSTFIX" >>$GITHUB_ENV
+ echo "CXX=g++$VERSION_POSTFIX" >>$GITHUB_ENV
+ else
+ echo "CC=clang" >>$GITHUB_ENV
+ echo "CXX=clang++" >>$GITHUB_ENV
+ fi
+ echo "QUOTEST_ORIGIN=${{ runner.os }}/${{ matrix.compiler }}" >>$GITHUB_ENV
+ echo "DESTDIR=${{ runner.workspace }}" >>$GITHUB_ENV
+ echo "CMAKE_ARGS=-DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_PREFIX_PATH=${{ runner.workspace }}/usr" >>$GITHUB_ENV
+ cmake -E make_directory ${{ runner.workspace }}/build
+
+ - name: Build and install olm
+ if: matrix.e2ee
+ run: |
+ cd ${{ runner.workspace }}
+ git clone https://gitlab.matrix.org/matrix-org/olm.git
+ pushd olm
+ cmake . -B build $CMAKE_ARGS
+ cmake --build build --target install
+ popd
+ echo "QUOTEST_ORIGIN=$QUOTEST_ORIGIN with E2EE" >>$GITHUB_ENV
+
+ - name: Pull CS API and build GTAD
+ if: matrix.update-api
+ run: |
+ cd ${{ runner.workspace }}
+ git clone https://github.com/matrix-org/matrix-doc.git
+ git clone --recursive https://github.com/KitsuneRal/gtad.git
+ pushd gtad
+ cmake . $CMAKE_ARGS
+ cmake --build .
+ popd
+ echo "CMAKE_ARGS=$CMAKE_ARGS -DMATRIX_DOC_PATH=${{ runner.workspace }}/matrix-doc -DGTAD_PATH=${{ runner.workspace }}/gtad/gtad" >>$GITHUB_ENV
+ echo "QUOTEST_ORIGIN=$QUOTEST_ORIGIN and API files regeneration" >>$GITHUB_ENV
+
+ - name: Configure libQuotient
+ run: cmake -S $GITHUB_WORKSPACE -B build $CMAKE_ARGS -DQuotient_ENABLE_E2EE=${{ matrix.e2ee }}
+
+ - name: Regenerate API code
+ if: matrix.update-api
+ run: cmake --build build --target update-api
+
+ - name: Build and install libQuotient
+ run: cmake --build build --target install
- - name: Configure CMake
+ - name: Build tests
+ run: |
+ cmake tests -Bbuild-test $CMAKE_ARGS
+ cmake --build build-test --target all
+
+ - name: Run tests
env:
- CXX: ${{ matrix.compiler }}
-# working-directory: ${{runner.workspace}}/build
- # Note the current convention is to use the -S and -B options here to specify source
- # and build directories, but this is only available with CMake 3.13 and higher.
- # The CMake binaries on the Github Actions machines are (as of this writing) 3.12
- run: cmake -Bbuild -S$GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE
-
- - name: Build
- run: cmake --build build --target quotest
-
-# - name: Test
-# working-directory: ${{runner.workspace}}/build
-# run: quotest ...
+ TEST_USER: ${{ secrets.TEST_USER }}
+ TEST_PWD: ${{ secrets.TEST_PWD }}
+ run: $VALGRIND build-test/quotest "$TEST_USER" "$TEST_PWD" quotest-gha '#quotest:matrix.org' "$QUOTEST_ORIGIN"