Skip to content

Commit e8148e4

Browse files
authored
Create compilation.yml
1 parent d704063 commit e8148e4

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/compilation.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: CI-compile
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
container: ps2dev/ps2dev:v1.0
11+
# instead of "ps2dev/ps2dev:latest" you can use different tags, for example for old projects you can use "ps2dev/ps2dev:v1.0"
12+
steps:
13+
- name: Install dependencies
14+
run: |
15+
apk add build-base git zip
16+
- uses: actions/checkout@v2
17+
- run: |
18+
git fetch --prune --unshallow
19+
- name: Compile project
20+
run: |
21+
make all
22+
# commands for compiling your project

0 commit comments

Comments
 (0)