pcsx2/.github/workflows/linux-workflow.yml

159 lines
5.6 KiB
YAML
Raw Normal View History

name: 🐧 Linux Builds
2020-09-11 05:57:09 +00:00
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- master
paths-ignore:
- .gitignore
- "**/*.md"
- .clang-format
- debian-packager/
- bin/PCSX2_keys.ini.default
- "pcsx2/PAD/Windows/**"
2020-09-11 05:57:09 +00:00
pull_request:
branches:
- master
paths-ignore:
- .gitignore
- "**/*.md"
- .clang-format
- debian-packager/
- bin/PCSX2_keys.ini.default
- "pcsx2/PAD/Windows/**"
2020-09-11 05:57:09 +00:00
jobs:
build:
strategy:
# Prevent one build from failing everything (although maybe those should be included as experimental builds instead)
fail-fast: false
matrix:
2020-11-24 00:44:30 +00:00
include:
- os: ubuntu-18.04
2020-11-24 00:44:30 +00:00
platform: x86
compiler: gcc
detail: appimage
2020-11-24 00:44:30 +00:00
experimental: false
- os: ubuntu-18.04
2020-11-24 00:44:30 +00:00
platform: x64
compiler: gcc
detail: appimage
2020-11-24 00:44:30 +00:00
experimental: false
- os: ubuntu-18.04
2020-11-24 00:44:30 +00:00
platform: x86
compiler: clang
# Need to disable PCH until cmake 3.17
# (PCH conflicts with ccache, fixed by https://gitlab.kitware.com/cmake/cmake/-/merge_requests/4400)
cmakeflags: -DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON
2021-07-13 19:56:33 +00:00
detail: -nopch
2020-11-24 00:44:30 +00:00
experimental: false
- os: ubuntu-18.04
2020-11-24 00:44:30 +00:00
platform: x86
compiler: gcc
cmakeflags: -DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON
2021-07-13 19:56:33 +00:00
detail: -nopch
experimental: false
- os: ubuntu-18.04
platform: x86
compiler: gcc
cmakeflags: -DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON -DARCH_FLAG=-march=haswell
2021-07-13 19:56:33 +00:00
detail: -avx2-nopch
experimental: false
2020-09-11 05:57:09 +00:00
name: "${{ matrix.platform }} | ${{ matrix.compiler }} ${{ matrix.detail }}"
2020-09-11 05:57:09 +00:00
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
# Set some sort of timeout in the event of run-away builds. We are limited on concurrent jobs so, get rid of them.
timeout-minutes: 30
steps:
# NOTE - useful for debugging
# - name: Dump GitHub context
# env:
# GITHUB_CONTEXT: ${{ toJson(github) }}
# run: |
# echo "$GITHUB_CONTEXT"
# echo ${{ github.event.pull_request.title }}
- name: Checkout Repository
2020-09-11 05:57:09 +00:00
uses: actions/checkout@v2
- name: Checkout Submodules
if: steps.cache-submodules.outputs.cache-hit != 'true'
run: git submodule update --init --recursive --jobs 2
2020-09-11 05:57:09 +00:00
# -- SETUP CCACHE - https://cristianadam.eu/20200113/speeding-up-c-plus-plus-github-actions-using-ccache/
- name: Prepare ccache timestamp
id: ccache_cache_timestamp
shell: cmake -P {0}
run: |
string(TIMESTAMP current_date "%Y-%m-%d-%H;%M;%S" UTC)
message("::set-output name=timestamp::${current_date}")
- name: ccache cache files
uses: actions/cache@v2.1.6
with:
path: .ccache
2020-11-24 00:44:30 +00:00
key: ${{ matrix.os }}-${{ matrix.platform }}-${{ matrix.compiler }}${{ matrix.detail }}-ccache-${{ steps.ccache_cache_timestamp.outputs.timestamp }}
restore-keys: ${{ matrix.os }}-${{ matrix.platform }}-${{ matrix.compiler }}${{ matrix.detail }}-ccache-
2020-09-11 05:57:09 +00:00
- name: Prepare Artifact Metadata
id: artifact-metadata
shell: bash
run: |
ARCH=$([ "${{ matrix.platform }}" == x86 ] && echo "32bit" || echo "64bit")
ARTIFACT_NAME=""
if [ ${{ github.event_name }} == "pull_request" ]; then
PR_SHA=$(git rev-parse --short "${{ github.event.pull_request.head.sha }}")
ARTIFACT_NAME="PCSX2-${ARCH}"
if [ ! -z "${{ github.event.pull_request.number }}" ]; then
PR_NUM=${{ github.event.pull_request.number }}
ARTIFACT_NAME="${ARTIFACT_NAME}-pr[${PR_NUM}]"
fi
ARTIFACT_NAME="${ARTIFACT_NAME}-sha[${PR_SHA}]"
if [ ! -z "${{ github.event.pull_request.title }}" ]; then
PR_TITLE=$(echo "${{ github.event.pull_request.title }}" | tr -cd '[a-zA-Z0-9[:space:]]_-')
ARTIFACT_NAME="${ARTIFACT_NAME}-title["${PR_TITLE}""
fi
else
SHA=$(git rev-parse --short "$GITHUB_SHA")
ARTIFACT_NAME="PCSX2-${ARCH}-sha[${SHA}"
fi
TRIMMED_ARTIFACT_NAME=$(printf "%.199s]" "$ARTIFACT_NAME")
echo "name=$TRIMMED_ARTIFACT_NAME"
echo "##[set-output name=name;]${TRIMMED_ARTIFACT_NAME}"
2020-09-12 00:12:55 +00:00
- name: Install Packages
2020-09-11 05:57:09 +00:00
env:
PLATFORM: ${{ matrix.platform }}
2020-10-17 00:09:15 +00:00
COMPILER: ${{ matrix.compiler }}
run: .github/workflows/scripts/linux/install-packages.sh
2020-09-11 05:57:09 +00:00
2020-10-17 00:09:15 +00:00
- name: Generate CMake
2020-09-12 00:12:55 +00:00
env:
PLATFORM: ${{ matrix.platform }}
2020-10-17 00:09:15 +00:00
COMPILER: ${{ matrix.compiler }}
2020-11-24 00:44:30 +00:00
ADDITIONAL_CMAKE_ARGS: ${{ matrix.cmakeflags }}
run: .github/workflows/scripts/linux/generate-cmake.sh
2020-10-17 00:09:15 +00:00
- name: Build PCSX2
working-directory: ./build
run: ../.github/workflows/scripts/linux/compile.sh
- name: Package AppImage
env:
PLATFORM: ${{ matrix.platform }}
COMPILER: ${{ matrix.compiler }}
name: ${{ steps.artifact-metadata.outputs.name }}
run: .github/workflows/scripts/linux/appimage.sh
if: ${{ matrix.detail == 'appimage' }}
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: ${{ steps.artifact-metadata.outputs.name }}
path: artifacts
if: ${{ matrix.detail == 'appimage' }}