Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/autobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ jobs:
building_on_os: ubuntu-18.04
base_command: TARGET_ARCH=armhf ./.github/autobuild/linux_deb.sh
run_codeql: false
build_release_only: true

- config_name: MacOS (artifacts)
target_os: macos
Expand All @@ -146,6 +147,7 @@ jobs:
# Disable CodeQL on mac as it interferes with signing the binaries (signing hangs, see #2563 and #2564)
run_codeql: false
xcode_version: 13.4.1
build_release_only: true

# Reminder: If Legacy is removed, be sure to add a dedicated job for CodeQL again.
- config_name: MacOS Legacy (artifacts+CodeQL)
Expand Down Expand Up @@ -182,8 +184,14 @@ jobs:
building_on_os: windows-2022
base_command: powershell .\.github\autobuild\windows.ps1 -BuildOption jackonwindows -Stage
run_codeql: false
build_release_only: true

runs-on: ${{ matrix.config.building_on_os }}
# Only build release only artifacts on release
if: >-
matrix.config.build_release_only == 'true' &&
needs.create_release.outputs.publish_to_release == 'true'
needs: create_release
steps:
- name: Select Xcode version for Mac
if: matrix.config.target_os == 'macos' || matrix.config.target_os == 'ios'
Expand Down