mirror of https://github.com/PCSX2/pcsx2.git
32 lines
739 B
YAML
32 lines
739 B
YAML
name: 🐧 Linux Builds
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- "l10n_master"
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build_linux_qt:
|
|
name: "AppImage"
|
|
if: github.repository != 'PCSX2/pcsx2' || github.event_name == 'pull_request'
|
|
uses: ./.github/workflows/linux_build_qt.yml
|
|
with:
|
|
jobName: "AppImage Build"
|
|
compiler: clang
|
|
cmakeflags: ""
|
|
buildAppImage: true
|
|
secrets: inherit
|
|
build_linux_flatpak:
|
|
name: "Flatpak"
|
|
if: github.repository != 'PCSX2/pcsx2' || github.event_name == 'pull_request'
|
|
uses: ./.github/workflows/linux_build_flatpak.yml
|
|
with:
|
|
jobName: "Flatpak Build"
|
|
compiler: clang
|
|
cmakeflags: ""
|
|
publish: false
|
|
secrets: inherit
|