-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI builds of desktop versions (against prebuild QT packages): - windows msvc x64 (NOK, qt build issue) - linux gcc x64 - macos clang CI builds of smartphone versions: - linux android (NOK, cmake config issue) - macos ios (NOK, cmake config issue) CI builds of openssl, qt libs: - windows msvc x64 (NOK, diskspace) - linux gcc x64 (NOK) - macos clang CI builds of smartphone versions: - linux android (NOK, cmake config issue) - macos ios
- Loading branch information
Showing
4 changed files
with
372 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
|
||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "monthly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,221 @@ | ||
name: CI_build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build_configuration: [Release] | ||
build_platform: [x64] | ||
|
||
steps: | ||
|
||
- name: Install openssl dev | ||
run: | | ||
choco install openssl | ||
dir "C:\Program Files" | ||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Add msbuild to PATH | ||
uses: microsoft/setup-msbuild@v1 | ||
|
||
- name: Install Qt | ||
uses: jurplel/install-qt-action@v3 | ||
with: | ||
version: '6.5.*' | ||
modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity' | ||
setup-python: 'false' | ||
|
||
- name: generate cmake | ||
run: | | ||
mkdir c:\_build | ||
cd c:\_build | ||
cmake -G "Visual Studio 17 2022" -A ${{ matrix.build_platform }} -T "v143" D:\a\AusweisApp2\AusweisApp2 | ||
- name: build cmake | ||
run: | | ||
cd c:\_build | ||
cmake --build . --config ${{ matrix.build_configuration }} --target package | ||
- name: run ctest | ||
run: | | ||
cd c:\_build | ||
ctest --output-on-failure -C "${{ matrix.build_configuration }}" | ||
build_linux_cmake: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build_configuration: [Release] | ||
build_platform: ["Unix Makefiles"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install packages via apt | ||
run: | | ||
sudo apt update -qq && sudo apt install -y cmake pkg-config libssl-dev libudev-dev libhttp-parser-dev libpcsclite-dev libqt6svg6-dev libqt6websockets6-dev qt6-base-dev qt6-base-private-dev qt6-declarative-dev qt6-scxml-dev qt6-tools-dev qt6-tools-dev-tools qt6-connectivity-dev libqt6opengl6-dev libqt6shadertools6-dev libgl1-mesa-dev qt6-l10n-tools | ||
- name: generate cmake | ||
run: | | ||
mkdir _build | ||
cd _build | ||
cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" .. | ||
- name: build cmake | ||
run: | | ||
cd _build | ||
cmake --build . --config ${{ matrix.build_configuration }} --target package | ||
sudo make install | ||
- name: run ctest | ||
run: | | ||
cd _build | ||
ctest --output-on-failure -C "${{ matrix.build_configuration }}" | ||
build_linux_android_cmake: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build_configuration: [Release] | ||
build_platform: ["Unix Makefiles"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install packages via apt | ||
run: | | ||
sudo apt-get update -qq && sudo apt install -y cmake pkg-config libssl-dev libudev-dev libhttp-parser-dev libpcsclite-dev libgl1-mesa-dev qt6-l10n-tools doxygen graphviz | ||
- name: Install Qt | ||
uses: jurplel/install-qt-action@v3 | ||
with: | ||
version: '6.4.3' | ||
host: 'linux' | ||
target: 'desktop' | ||
arch: 'gcc_64' | ||
modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity' | ||
setup-python: 'false' | ||
|
||
- name: Install Qt | ||
uses: jurplel/install-qt-action@v3 | ||
with: | ||
version: '6.4.*' | ||
host: 'linux' | ||
target: 'android' | ||
arch: 'android_x86_64' | ||
modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity' | ||
setup-python: 'false' | ||
|
||
- name: generate cmake | ||
run: | | ||
mkdir _build | ||
cd _build | ||
cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" -DQT_HOST_PATH=/home/runner/work/AusweisApp2/Qt/6.4.3/gcc_64 -DCMAKE_ANDROID_ARCH_ABI=x86_64 -DCMAKE_TOOLCHAIN_FILE=../cmake/android.toolchain.cmake .. | ||
- name: build cmake | ||
run: | | ||
cd _build | ||
cmake --build . --config ${{ matrix.build_configuration }} | ||
- name: run ctest | ||
run: | | ||
cd _build | ||
ctest --output-on-failure -C "${{ matrix.build_configuration }}" | ||
build_macos_cmake: | ||
|
||
runs-on: macos-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build_configuration: [Release] | ||
build_platform: ["Unix Makefiles"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install Qt | ||
uses: jurplel/install-qt-action@v3 | ||
with: | ||
version: '6.4.*' | ||
modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity qtimageformats' | ||
setup-python: 'false' | ||
|
||
- name: generate cmake | ||
run: | | ||
export OPENSSL_ROOT=/usr/local/opt/openssl/bin | ||
export LDFLAGS=-L/usr/local/opt/openssl/lib | ||
export CPPFLAGS=-I/usr/local/opt/openssl/include | ||
export PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig/ | ||
mkdir _build | ||
cd _build | ||
cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" .. | ||
- name: build cmake | ||
run: | | ||
cd _build | ||
cmake --build . --config ${{ matrix.build_configuration }} | ||
- name: run ctest | ||
run: | | ||
cd _build | ||
ctest --output-on-failure -C "${{ matrix.build_configuration }}" | ||
build_ios_cmake: | ||
|
||
runs-on: macos-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build_configuration: [Release] | ||
build_platform: ["Unix Makefiles"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install Qt | ||
uses: jurplel/install-qt-action@v3 | ||
with: | ||
version: '6.4.*' | ||
modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity qtimageformats qtquick3d' | ||
setup-python: 'false' | ||
|
||
- name: Install Qt | ||
uses: jurplel/install-qt-action@v3 | ||
with: | ||
version: '6.4.*' | ||
host: 'mac' | ||
target: 'ios' | ||
modules: 'qtscxml qtwebsockets qtshadertools qtconnectivity qtimageformats qtquick3d' | ||
setup-python: 'false' | ||
|
||
- name: generate cmake | ||
run: | | ||
export OPENSSL_ROOT=/usr/local/opt/openssl/bin | ||
export PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig/ | ||
mkdir _build | ||
cd _build | ||
cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" -DQT_HOST_PATH=/Users/runner/work/AusweisApp2/Qt/6.4.2/macos -DCMAKE_TOOLCHAIN_FILE=../cmake/iOS.toolchain.cmake .. | ||
- name: build cmake | ||
run: | | ||
cd _build | ||
cmake --build . --config ${{ matrix.build_configuration }} | ||
- name: run ctest | ||
run: | | ||
cd _build | ||
ctest --output-on-failure -C "${{ matrix.build_configuration }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
name: CI_build_libs | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: windows-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build_configuration: [Release] | ||
build_platform: ["NMake Makefiles"] | ||
|
||
steps: | ||
|
||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Add nmake | ||
uses: ilammy/msvc-dev-cmd@v1 | ||
|
||
- name: generate cmake | ||
run: | | ||
mkdir c:\_build | ||
cd c:\_build | ||
cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" D:\a\AusweisApp2\AusweisApp2\libs | ||
- name: build cmake | ||
run: | | ||
cd c:\_build | ||
cmake --build . --config ${{ matrix.build_configuration }} | ||
build_linux_cmake: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build_configuration: [Release] | ||
build_platform: ["Ninja"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install packages via apt | ||
run: | | ||
sudo apt-get update -qq && sudo apt install -y cmake pkg-config libssl-dev libudev-dev libhttp-parser-dev libpcsclite-dev libgl1-mesa-dev libdbus-1-dev libclang-dev ninja-build | ||
- name: generate cmake | ||
run: | | ||
mkdir _build | ||
cd _build | ||
cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" ../libs | ||
- name: build cmake | ||
run: | | ||
cd _build | ||
cmake --build . --config ${{ matrix.build_configuration }} | ||
build_linux_android_cmake: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build_configuration: [Release] | ||
build_platform: ["Ninja"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install packages via apt | ||
run: | | ||
sudo apt-get update -qq && sudo apt install -y cmake pkg-config libssl-dev libudev-dev libhttp-parser-dev libpcsclite-dev libgl1-mesa-dev libdbus-1-dev libclang-dev ninja-build | ||
- name: generate cmake | ||
run: | | ||
mkdir _build | ||
cd _build | ||
cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" -DCMAKE_TOOLCHAIN_FILE=../cmake/android.toolchain.cmake ../libs | ||
- name: build cmake | ||
run: | | ||
cd _build | ||
cmake --build . --config ${{ matrix.build_configuration }} | ||
build_macos_cmake: | ||
|
||
runs-on: macos-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build_configuration: [Release] | ||
build_platform: ["Ninja"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: install ninja | ||
run: | | ||
brew install ninja | ||
- name: generate cmake | ||
run: | | ||
mkdir _build | ||
cd _build | ||
cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" ../libs | ||
- name: build cmake | ||
run: | | ||
cd _build | ||
cmake --build . --config ${{ matrix.build_configuration }} | ||
build_ios_cmake: | ||
|
||
runs-on: macos-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build_configuration: [Release] | ||
build_platform: ["Unix Makefiles"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: generate cmake | ||
run: | | ||
mkdir _build | ||
cd _build | ||
cmake -G "${{ matrix.build_platform }}" -DCMAKE_BUILD_TYPE="${{ matrix.build_configuration }}" -DCMAKE_TOOLCHAIN_FILE=../cmake/iOS.toolchain.cmake ../libs | ||
- name: build cmake | ||
run: | | ||
cd _build | ||
cmake --build . --config ${{ matrix.build_configuration }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters