* Add coverage for both targets * Use var for test bins * Disable cmake-format comment fiddling * Refactor GUI source config * Use bin var for tests * Remove unused member * Add integration tests to CI * Use modern cmake args * Use max threads for build * Use better var name for CPU core count * Split build and configure steps * Combine tests into action and add a PR comment * Fixed yaml indentation in action * Pass GITHUB_TOKEN * Update coverage paths for SonarCloud * Don't ignore return codes * Add shell * Run Valgrind on integ tests * Use header for tests * Save test results in table * Move setup step outside of action * Change logic of creating PR comment * Remove header formatting * Use emojis for simplicity * Run build wrapper in build dir * Use default make target * Pass secrets * Fixed SonarScanner warnings * Don't allow unit tests to fail * Fixed typo * Update sonar scanner paths * Fixed line endings * Use step output * Improve exclusion glob * Exclude files from coverage * Restore simpler pattern * Set temp file path * Coverage tests * Re-create comment at start of job * Append table header * Add setup action * Checkout before action * Re-add projectBaseDir * Restore original sonar scanner * Use bash syntax for if * Remove unused `shell` * Add missing shell for valgrind action * Restore new sonar scanner config * Add missing shell * Run only MainWindowTests * Test with big change * More changes * Move to correct dir * Remove test code * Disable broken integ tests * Switch coverage to front of filename * Remove filter * Refactor status step * Disable segfault test * Fixed: No status showing * Add link to workflows * Add test code for coverage * Revert "Add test code for coverage" This reverts commit c42309349b64f7828f2ca89149b30c5b0f93478a. * Get workflow run URL * Add missing shell * Use dynamic URL in valgrind comment * Revert "Revert "Add test code for coverage"" This reverts commit 9cff58b7ea5c581681ae6d6660c073bd76ba99aa. * Test with commented out code * Reintroduce 6 lines for coverage * Test code to pass scanner * Test code to pass scanner (take 2) * Simplify to 2 new lines * Add another line * Trim changes to only 3 lines * Add task for all tests * Surface warning on failure * Simplify build-wrapper step and move settings from web UI to CI * Add missing line delims * Also run tests action on Windows and macOS * Add names to action steps * Add timeout for test steps * Add failure warning for integ tests * Remove space * Disable failing test on macOS * Disable problem matcher * Simplify names * Disable freezing test on Windows * Disable failing integ test on Windows * Add build-kill task * Ignore kill result on Windows * Delete test code * Update ChangeLog * Move timeout to workflow step
291 lines
9.0 KiB
YAML
291 lines
9.0 KiB
YAML
# All-in-one continuous integration (CI) workflow.
|
|
# Runs on all platforms (Windows, macOS, and Linux)
|
|
# for all events (pull request, release, and schedule).
|
|
|
|
name: CI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: Synergy version number
|
|
required: true
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
- ready_for_review
|
|
release:
|
|
types: [published]
|
|
schedule:
|
|
- cron: "0 5 * * *"
|
|
|
|
env:
|
|
GIT_SHA: ${{ github.sha }}
|
|
SYNERGY_VERSION: ${{ github.event.inputs.version || github.event.release.tag_name }}
|
|
SYNERGY_PRODUCT_NAME: ${{ vars.SYNERGY_PRODUCT_NAME }}
|
|
SYNERGY_PACKAGE_PREFIX: ${{ vars.SYNERGY_PACKAGE_PREFIX }}
|
|
SYNERGY_ENABLE_LICENSING: ${{ vars.SYNERGY_ENABLE_LICENSING }}
|
|
PACKAGE_BUILD: ${{ !github.event.pull_request.draft }}
|
|
PACKAGE_UPLOAD: ${{ !github.event.pull_request.draft && github.event_name != 'schedule' }}
|
|
UPLOAD_TO_GITHUB: ${{ github.event_name == 'pull_request' && !github.event.pull_request.draft }}
|
|
UPLOAD_TO_GDRIVE: ${{ github.event_name != 'pull_request' }}
|
|
|
|
jobs:
|
|
setup:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- uses: ./.github/actions/run-tests-setup
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
windows:
|
|
name: ${{ matrix.target.name }}
|
|
runs-on: ${{ matrix.target.runs-on }}
|
|
container: ${{ matrix.target.container }}
|
|
timeout-minutes: 20
|
|
|
|
strategy:
|
|
matrix:
|
|
target:
|
|
- name: windows-2022-x64
|
|
runs-on: windows-2022-8-core-x64
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: "recursive"
|
|
|
|
- name: Cache Chocolatey packages
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ${{ runner.temp }}/choco
|
|
key: choco-${{ hashFiles('Chocolatey.config') }}
|
|
|
|
- name: Cache deps dir
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ./deps
|
|
key: ${{ runner.os }}-deps-${{ hashFiles('config.yaml') }}
|
|
|
|
- name: Install dependencies
|
|
run: python ./scripts/install_deps.py --ci-env
|
|
|
|
- name: Setup VC++ environment
|
|
uses: ilammy/msvc-dev-cmd@v1
|
|
|
|
- name: Configure
|
|
run: cmake -B build --preset=windows-release
|
|
|
|
- name: Build
|
|
run: cmake --build build -j8
|
|
|
|
- name: Tests
|
|
uses: ./.github/actions/run-tests
|
|
timeout-minutes: 2
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
job: ${{ matrix.target.name }}
|
|
|
|
- name: Package
|
|
if: ${{ vars.SYNERGY_ENABLE_PACKAGING && env.PACKAGE_BUILD == 'true' }}
|
|
run: python ./scripts/package.py
|
|
env:
|
|
WINDOWS_PFX_CERTIFICATE: ${{ secrets.WINDOWS_PFX }}
|
|
WINDOWS_PFX_PASSWORD: ${{ secrets.WINDOWS_PFX_PASS }}
|
|
|
|
- name: Upload
|
|
if: ${{ vars.SYNERGY_ENABLE_PACKAGING && env.PACKAGE_UPLOAD == 'true' }}
|
|
uses: ./.github/actions/dist-upload
|
|
with:
|
|
use_github: ${{ env.UPLOAD_TO_GITHUB }}
|
|
use_gdrive: ${{ env.UPLOAD_TO_GDRIVE }}
|
|
github-target-filename: "${{ env.SYNERGY_PACKAGE_PREFIX }}-${{ matrix.target.name }}"
|
|
gdrive-target-base-dir: ${{ vars.GDRIVE_TARGET_BASE_DIR }}
|
|
gdrive-secret-key: ${{ secrets.GOOGLE_DRIVE_KEY }}
|
|
gdrive-parent-folder-id: ${{ secrets.GOOGLE_DRIVE_TECH_DRIVE }}
|
|
package-version: ${{ env.SYNERGY_VERSION }}
|
|
|
|
macos:
|
|
name: ${{ matrix.target.name }}
|
|
runs-on: ${{ matrix.target.os }}
|
|
timeout-minutes: ${{ matrix.target.timeout }}
|
|
|
|
defaults:
|
|
run:
|
|
shell: ${{ matrix.target.shell }}
|
|
|
|
strategy:
|
|
matrix:
|
|
target:
|
|
- name: "macos-14-arm64"
|
|
timeout: 10
|
|
os: "macos-14"
|
|
arch: arm64
|
|
shell: "/usr/bin/arch -arch arm64e /bin/bash --noprofile --norc -eo pipefail {0}"
|
|
|
|
- name: "macos-14-x64"
|
|
timeout: 20
|
|
os: "macos-14-large"
|
|
arch: x64
|
|
shell: "bash"
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: "recursive"
|
|
|
|
- name: Cache deps dir
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ./deps
|
|
key: ${{ runner.os }}-deps-${{ hashFiles('config.yaml') }}
|
|
|
|
- name: Install dependencies
|
|
run: ./scripts/install_deps.py --ci-env
|
|
|
|
- name: Configure
|
|
run: cmake -B build --preset=macos-release
|
|
|
|
- name: Build
|
|
run: cmake --build build -j8
|
|
|
|
- name: Tests
|
|
uses: ./.github/actions/run-tests
|
|
timeout-minutes: 2
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
job: ${{ matrix.target.name }}
|
|
|
|
- name: Package
|
|
if: ${{ vars.SYNERGY_ENABLE_PACKAGING && env.PACKAGE_BUILD == 'true' }}
|
|
run: ./scripts/package.py
|
|
env:
|
|
APPLE_CODESIGN_ID: ${{ secrets.APPLE_CODESIGN_ID }}
|
|
APPLE_P12_CERTIFICATE: ${{ secrets.APPLE_P12_CERTIFICATE }}
|
|
APPLE_P12_PASSWORD: ${{ secrets.APPLE_P12_PASSWORD }}
|
|
APPLE_NOTARY_USER: ${{ secrets.APPLE_NOTARY_USER }}
|
|
APPLE_NOTARY_PASSWORD: ${{ secrets.APPLE_NOTARY_PASSWORD }}
|
|
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
|
|
|
|
- name: Upload
|
|
if: ${{ vars.SYNERGY_ENABLE_PACKAGING && env.PACKAGE_UPLOAD == 'true' }}
|
|
uses: ./.github/actions/dist-upload
|
|
with:
|
|
use_github: ${{ env.UPLOAD_TO_GITHUB }}
|
|
use_gdrive: ${{ env.UPLOAD_TO_GDRIVE }}
|
|
github-target-filename: "${{ env.SYNERGY_PACKAGE_PREFIX }}-${{ matrix.target.name }}"
|
|
gdrive-target-base-dir: ${{ vars.GDRIVE_TARGET_BASE_DIR }}
|
|
gdrive-secret-key: ${{ secrets.GOOGLE_DRIVE_KEY }}
|
|
gdrive-parent-folder-id: ${{ secrets.GOOGLE_DRIVE_TECH_DRIVE }}
|
|
package-version: ${{ env.SYNERGY_VERSION }}
|
|
|
|
linux:
|
|
name: linux-${{ matrix.distro.name }}
|
|
runs-on: ${{ matrix.distro.runs-on }}
|
|
container: ${{ matrix.distro.container }}
|
|
timeout-minutes: 20
|
|
|
|
env:
|
|
# Prevent apt prompting for input.
|
|
DEBIAN_FRONTEND: noninteractive
|
|
|
|
strategy:
|
|
matrix:
|
|
distro:
|
|
- name: debian-12-arm64
|
|
container: symless/synergy-core:debian-12-arm64
|
|
runs-on: ubuntu-24.04-8-core-arm64
|
|
extra-packages: true
|
|
|
|
- name: debian-12-amd64
|
|
container: symless/synergy-core:debian-12-amd64
|
|
runs-on: ubuntu-latest
|
|
extra-packages: true
|
|
|
|
- name: ubuntu-24.04-amd64
|
|
container: symless/synergy-core:ubuntu-24.04-amd64
|
|
runs-on: ubuntu-latest
|
|
|
|
- name: ubuntu-22.04-amd64
|
|
container: symless/synergy-core:ubuntu-22.04-amd64
|
|
runs-on: ubuntu-latest
|
|
|
|
- name: fedora-40-arm64
|
|
container: symless/synergy-core:fedora-40-arm64
|
|
runs-on: ubuntu-24.04-8-core-arm64
|
|
|
|
- name: fedora-40-amd64
|
|
container: symless/synergy-core:fedora-40-amd64
|
|
runs-on: ubuntu-latest
|
|
|
|
- name: fedora-39-amd64
|
|
container: symless/synergy-core:fedora-39-amd64
|
|
runs-on: ubuntu-latest
|
|
|
|
- name: opensuse-amd64
|
|
container: symless/synergy-core:opensuse-amd64
|
|
runs-on: ubuntu-latest
|
|
|
|
- name: archlinux-amd64
|
|
container: symless/synergy-core:archlinux-amd64
|
|
runs-on: ubuntu-latest
|
|
package-user: build
|
|
|
|
- name: manjaro-amd64
|
|
container: symless/synergy-core:manjaro-amd64
|
|
runs-on: ubuntu-latest
|
|
package-user: build
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: "recursive"
|
|
|
|
- name: Config Git safe dir
|
|
run: git config --global --add safe.directory $GITHUB_WORKSPACE
|
|
|
|
- name: Install dependencies
|
|
run: ./scripts/install_deps.py --ci-env
|
|
|
|
- name: Configure
|
|
run: cmake -B build --preset=linux-release
|
|
|
|
- name: Build
|
|
run: cmake --build build -j8
|
|
|
|
- name: Tests
|
|
uses: ./.github/actions/run-tests
|
|
timeout-minutes: 2
|
|
with:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
job: linux-${{ matrix.distro.name }}
|
|
|
|
- name: Package
|
|
if: ${{ vars.SYNERGY_ENABLE_PACKAGING && env.PACKAGE_BUILD == 'true' }}
|
|
env:
|
|
LINUX_EXTRA_PACKAGES: ${{ matrix.distro.extra-packages }}
|
|
LINUX_PACKAGE_USER: ${{ matrix.distro.package-user }}
|
|
run: ./scripts/package.py
|
|
|
|
- name: Upload
|
|
if: ${{ vars.SYNERGY_ENABLE_PACKAGING && env.PACKAGE_UPLOAD == 'true' }}
|
|
uses: ./.github/actions/dist-upload
|
|
with:
|
|
use_github: ${{ env.UPLOAD_TO_GITHUB }}
|
|
use_gdrive: ${{ env.UPLOAD_TO_GDRIVE }}
|
|
github-target-filename: "${{ env.SYNERGY_PACKAGE_PREFIX }}-${{ matrix.distro.name }}"
|
|
gdrive-target-base-dir: ${{ vars.GDRIVE_TARGET_BASE_DIR }}
|
|
gdrive-secret-key: ${{ secrets.GOOGLE_DRIVE_KEY }}
|
|
gdrive-parent-folder-id: ${{ secrets.GOOGLE_DRIVE_TECH_DRIVE }}
|
|
package-version: ${{ env.SYNERGY_VERSION }}
|