-
Notifications
You must be signed in to change notification settings - Fork 3
72 lines (60 loc) · 1.54 KB
/
payload.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: CI
on:
push:
paths-ignore:
- "**/*.md"
- '**/*.txt'
pull_request:
paths-ignore:
- "**/*.md"
- '**/*.txt'
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
payload-build:
runs-on: ubuntu-latest
steps:
- name: Checkout SDK
uses: actions/checkout@v3
with:
repository: ps5-payload-dev/sdk
path: sdk
- name: Setup SDK
working-directory: sdk
run: |
sudo apt update
sudo apt install xxd clang-15 lld-15
make DESTDIR=${{ runner.tool_cache }}/ps5-payload-sdk clean install
echo PS5_PAYLOAD_SDK=${{ runner.tool_cache }}/ps5-payload-sdk >> $GITHUB_ENV
- name: Checkout Payload
uses: actions/checkout@v3
- name: Build Payload
run: |
bash libmicrohttpd.sh
make clean all
- name: Upload Payload
uses: actions/upload-artifact@v3
with:
name: Payload
path: ./websrv.elf
if-no-files-found: error
- name: Upload DevilutionX
uses: actions/upload-artifact@v3
with:
name: DevilutionX
path: ./homebrew/DevilutionX
if-no-files-found: error
- name: Upload FFplay
uses: actions/upload-artifact@v3
with:
name: FFplay
path: ./homebrew/FFplay
if-no-files-found: error
- name: Upload LakeSnes
uses: actions/upload-artifact@v3
with:
name: LakeSnes
path: ./homebrew/LakeSnes
if-no-files-found: error