[Chores] Format code #3223
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: Linux CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/grumpycoders/pcsx-redux-build:latest | |
env: | |
TEST_RESULTS: /tmp/test-results | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
set-safe-directory: true | |
- uses: n1hility/cancel-previous-runs@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- run: | | |
make -j 2 all pcsx-redux-tests | |
make -C src/mips/tests -j 2 PCSX_TESTS=true | |
make -C src/mips/openbios -j 2 clean all | |
- name: Packaging | |
run: | | |
git config --global --add safe.directory /__w/pcsx-redux/pcsx-redux | |
make install install-openbios DESTDIR=AppDir/usr | |
echo '{' > AppDir/usr/share/pcsx-redux/resources/version.json | |
echo ' "version": "'`git rev-parse HEAD | cut -c 1-8`'",' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
echo ' "changeset": "'`git rev-parse HEAD`'",' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
echo ' "timestamp": '`date '+%s'`',' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
echo ' "channel": "dev",' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
echo ' "updateInfo": [' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
echo ' {' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
echo ' "channel": "dev",' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
echo ' "method": "appcenter",' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
echo ' "updateCatalog": "https://install.appcenter.ms/api/v0.1/apps/grumpycoders/pcsx-redux-linux64/distribution_groups/public/public_releases",' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
echo ' "updateInfoBase": "https://install.appcenter.ms/api/v0.1/apps/grumpycoders/pcsx-redux-linux64/distribution_groups/public/releases/"' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
echo ' }' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
echo ' ]' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
echo '}' >> AppDir/usr/share/pcsx-redux/resources/version.json | |
appimage-builder --skip-tests | |
- name: Test | |
run: | | |
export GTEST_OUTPUT=xml:${TEST_RESULTS}/ | |
mkdir -p $TEST_RESULTS | |
xvfb-run catchsegv ./pcsx-redux-tests | |
- name: Deploy | |
if: github.event_name == 'push' | |
env: | |
APPCENTER_ACCESS_TOKEN: ${{ secrets.LINUX_APPCENTER_ACCESS_TOKEN }} | |
run: | | |
git config --global --add safe.directory /__w/pcsx-redux/pcsx-redux | |
export BUILD=`git rev-parse HEAD | cut -c 1-8` | |
. /usr/local/nvm/nvm.sh | |
zip PCSX-Redux-$BUILD-linux-x86_64.zip *.AppImage | |
appcenter distribute release -b $BUILD -f PCSX-Redux-$BUILD-linux-x86_64.zip -g public -a grumpycoders/pcsx-redux-linux64 --disable-telemetry |