Port multiplayer related PRs from yuzu (yuzu-emu/yuzu#9661 and yuzu-e… #49
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: citra-ci | |
on: | |
push: | |
branches: [ "*" ] | |
tags: [ "*" ] | |
pull_request: | |
branches: [ master, main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
image: ["linux-clang-format", "linux-fresh", "linux-frozen", "linux-mingw"] | |
container: fadillzzz/rasp-build-env:${{ matrix.image }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.ccache | |
key: ${{ runner.os }}-${{ matrix.image }}-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.image }}- | |
- name: Query tag name | |
uses: little-core-labs/[email protected] | |
id: tagName | |
- name: Build | |
run: ./.ci/${{ matrix.image }}/docker.sh | |
env: | |
ENABLE_COMPATIBILITY_REPORTING: "ON" | |
- name: Pack | |
run: ./.ci/${{ matrix.image }}/upload.sh | |
if: ${{ matrix.image != 'linux-frozen' && matrix.image != 'linux-clang-format' }} | |
env: | |
NAME: ${{ matrix.image }} | |
- name: Upload | |
uses: actions/upload-artifact@v2 | |
if: ${{ matrix.image != 'linux-frozen' && matrix.image != 'linux-clang-format' }} | |
with: | |
name: ${{ matrix.image }} | |
path: artifacts/ | |
macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/Library/Caches/ccache | |
key: ${{ runner.os }}-macos-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-macos- | |
- name: Query tag name | |
uses: little-core-labs/[email protected] | |
id: tagName | |
- name: Install dependencies | |
run: ./.ci/macos/deps.sh | |
- name: Build | |
run: ./.ci/macos/build.sh | |
env: | |
MACOSX_DEPLOYMENT_TARGET: "10.13" | |
ENABLE_COMPATIBILITY_REPORTING: "ON" | |
- name: Pack | |
run: ./.ci/macos/upload.sh | |
- name: Upload | |
uses: actions/upload-artifact@v2 | |
with: | |
name: macos | |
path: artifacts/ | |
windows: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Set up cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.buildcache | |
key: ${{ runner.os }}-win-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-win- | |
- name: Install dependencies | |
run: ./.ci/windows-msvc/deps.sh | |
shell: bash | |
- name: Set up MSVC | |
uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
toolset: 14.29 | |
- name: Build | |
run: ./.ci/windows-msvc/build.sh | |
shell: bash | |
env: | |
ENABLE_COMPATIBILITY_REPORTING: "ON" | |
transifex: | |
runs-on: ubuntu-latest | |
container: fadillzzz/rasp-build-env:linux-transifex | |
if: ${{ github.repository == 'citra-emu/citra' && !github.head_ref }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Update Translation | |
run: ./.ci/transifex/docker.sh | |
env: | |
TRANSIFEX_API_TOKEN: ${{ secrets.TRANSIFEX_API_TOKEN }} | |
release: | |
runs-on: ubuntu-latest | |
needs: [build] | |
if: ${{ startsWith(github.ref, 'refs/tags/') }} | |
steps: | |
- uses: actions/download-artifact@v2 | |
- name: Query tag name | |
uses: little-core-labs/[email protected] | |
id: tagName | |
- name: Create release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.tagName.outputs.tag }} | |
release_name: ${{ steps.tagName.outputs.tag }} | |
draft: false | |
prerelease: false | |
- name: Upload artifacts | |
uses: alexellis/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
asset_paths: '["./**/*.tar.*","./**/*.7z","./**/*.zip"]' |