vita: Adjust vitaGL build config in ci #3
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: Nintendo Switch CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: ${{ matrix.config.name }} | |
runs-on: ubuntu-latest | |
container: devkitpro/devkita64:latest | |
strategy: | |
matrix: | |
config: | |
- {name: standalone, destDir: switch} | |
- {name: libretro, cmakeArgs: -DLIBRETRO=ON} | |
steps: | |
- name: Set up build environment | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install awscli ccache | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Mark git repository as safe | |
run: git config --global --add safe.directory $PWD | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.ccache | |
key: ccache-switch-${{ matrix.config.name }}-${{ github.sha }} | |
restore-keys: ccache-switch-${{ matrix.config.name }}- | |
- name: CMake | |
run: | | |
$DEVKITPRO/portlibs/switch/bin/aarch64-none-elf-cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=artifact -G Ninja ${{ matrix.config.cmakeArgs }} | |
cmake --build build --config Release --target install | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: flycast-switch-${{ matrix.config.name }} | |
path: artifact/bin | |
- name: Package app | |
run: zip -m artifact/bin/flycast.nro.zip artifact/bin/flycast.nro | |
if: hashFiles('artifact/bin/flycast.nro') != '' | |
- name: Configure AWS Credentials | |
id: aws-credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-access-key-id: AKIAJOZQS4H2PHQWYFCA | |
aws-secret-access-key: ${{ secrets.S3_SECRET_KEY }} | |
aws-region: us-east-2 | |
if: github.repository == 'flyinghead/flycast' && github.event_name == 'push' && matrix.config.destDir != '' | |
- name: Upload to S3 | |
run: aws s3 sync artifact/bin s3://flycast-builds/${{ matrix.config.destDir }}/${GITHUB_REF#refs/}-$GITHUB_SHA --acl public-read --follow-symlinks | |
if: ${{ steps.aws-credentials.outputs.aws-account-id != '' }} |