Skip to content

Commit

Permalink
Create compilation.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AKuHAK authored Jan 17, 2021
1 parent d704063 commit e8148e4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI-compile

on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
container: ps2dev/ps2dev:v1.0
# instead of "ps2dev/ps2dev:latest" you can use different tags, for example for old projects you can use "ps2dev/ps2dev:v1.0"
steps:
- name: Install dependencies
run: |
apk add build-base git zip
- uses: actions/checkout@v2
- run: |
git fetch --prune --unshallow
- name: Compile project
run: |
make all
# commands for compiling your project

0 comments on commit e8148e4

Please sign in to comment.