mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-12-26 03:01:51 +01:00
7e2bbbb9ac
- Remove Cirrus CI build - Add Github Workflow - Adjust README.md - Adjust Credits
31 lines
633 B
YAML
31 lines
633 B
YAML
name: Snes9x GX Build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: ubuntu-20.04
|
|
runs-on: ubuntu-20.04
|
|
container: devkitpro/devkitppc:latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
with:
|
|
submodules: true
|
|
|
|
- name: Copy build files
|
|
run: |
|
|
cp -r libfreetype.a /opt/devkitpro/portlibs/ppc/lib/
|
|
cp -r libfreetype.la /opt/devkitpro/portlibs/ppc/lib/
|
|
working-directory: ./buildtools
|
|
|
|
- name: Build
|
|
run: |
|
|
make -j2
|
|
|
|
- name: Upload a Build Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: executables
|
|
path: executables/*
|