Update docker-image.yml #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: Docker Image CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: ps2dev/ps2sdk | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get dependencies | |
run: | | |
apk add build-base git | |
- name: Install ps2stuff | |
run: | | |
git clone https://github.com/ps2dev/ps2stuff.git | |
cd ps2stuff && make clean all install | |
- name: Install ps2gl | |
run: | | |
git clone https://github.com/ps2dev/ps2gl.git | |
cd ps2gl && make clean all install |