* Also ignore `command_pre` for Fedora itself * Improve warning message * Fixed layout issues on main window * Restore fusion theme for Windows dark mode * Further correct main window layout * Set CWD for launch on Windows to same dir as .env * Use signals for tray icon instead of callback * Reduce complexity for setting tray icon * Further reduce tray icon complexity * Reduce tray retry time * Fixed tray not showing on macOS * Refactor function names * Move tray icon to lib * Decouple server connection class * Move server connection to lib * Move client config to lib * Remove redundant forward declarations * Fixed some namespaces in the new lib * Move core process code to new class * Improve member names on new process class * Remove copy/pasta code * Move OSX helpers to lib * Add .mm to lib config * Fixed copyright * Improve reliability of log line handling * Fixed TLS certificate generate bugs * Remove client list * Refactor core process handling to fix various problems * Fixed process/connection status bugs * Fixed function signature issue on macOS * Fixed override warnings * Fixed string format warning * Save `wasStarted` state and use that instead * Use only filename in dialog * Use lambda for simple slot * Scroll to bottom if at bottome * Set value based on position before text added and set horizontal scroll too * Add 1px tollerance for Linux * Simplify start/stop mutex * Always stop service on restart * Increase scroll bottom threshold to 2 * Log warning instead of critical * Fixed long-standing dir CD-up hack * Remove include * Remove include * Fixed rogue dumbisense includes * Account for optional distro_like * Add QAction include to solve incomplete type * Remove rogue #pragma * Static cast log value * Solve event queue delete warning * Fixed integ test on Windows 10 * Reduce enum verbosity * Use static instance instead of global * Make function const * Use unique_ptr instead of new and delete, and made some functions const * Fixed smart pointer use * Fixed variable shadowing * Fixed wrong use of using * Fixed missing namespace using * Simplify TLS error handling * Improve UX around certificate errors and success * Decouple app config from core process through interface * First iteration of core process test * Mark dtor as override * Rename attach launch entry * Add TODO * Create proxy for process * Move IPC client to deps * Fixed warnings * Reorganize new GUI lib dir structure * Update includes to reflect new paths * Reorg GUI tests * Abstract IPC client * Refactor about screen * Fixed .ui warnings * Remove redundant include * Fixed typo * Fixed typos and add spelling * Fixed misleading function name * Improve comment * Improve code coverage for core process * Remove noisy log line * Make global const * Use default dtor * Use vector instead of new * Make ctor explicit * Make ctor explicit (2) * Use enum class * Fixed bad enum * Stub out core tool * Stub out dir operation * Extract byte functions * Add missing return path * Simplify byte/int functions * Fix truncation * Use ctor member assignment * Fixed segfault in process proxy * Fixed print warning * Make function const * Cleanup header * Fixed missing name * Update ChangeLog * Make more functions const
312 lines
9.8 KiB
YAML
312 lines
9.8 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_LICENSED_PRODUCT: ${{ vars.SYNERGY_LICENSED_PRODUCT }}
|
|
SYNERGY_ENABLE_ACTIVATION: ${{ vars.SYNERGY_ENABLE_ACTIVATION }}
|
|
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:
|
|
# Normally, we want to fail fast, but in this case we shouldn't since one target may
|
|
# fail due to transient issues unrelated to the build.
|
|
fail-fast: false
|
|
|
|
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:
|
|
# Normally, we want to fail fast, but in this case we shouldn't since one target may
|
|
# fail due to transient issues unrelated to the build.
|
|
fail-fast: false
|
|
|
|
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:
|
|
# Normally, we want to fail fast, but in this case we shouldn't since one distro may
|
|
# fail due to transient issues unrelated to the build.
|
|
fail-fast: false
|
|
|
|
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: rockylinux-9-amd64
|
|
container: symless/synergy-core:rockylinux-9-amd64
|
|
runs-on: ubuntu-latest
|
|
|
|
- name: almalinux-9-amd64
|
|
container: symless/synergy-core:almalinux-9-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 }}
|