Migrate downloadable dependencies into a shell file. #1007
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: CI | |
on: | |
push: | |
pull_request: | |
repository_dispatch: | |
types: [run_build] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: ps2dev/ps2sdk:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
apk add build-base git bash cmake pkgconfig texinfo autoconf automake libtool gettext-dev flex | |
- name: Compile project | |
run: | | |
export GSKIT=$PS2DEV/gsKit | |
make -j$(getconf _NPROCESSORS_ONLN) |