File tree Expand file tree Collapse file tree 2 files changed +49
-7
lines changed Expand file tree Collapse file tree 2 files changed +49
-7
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ pull_request :
6
+ repository_dispatch :
7
+ types : [run_build]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-latest
12
+ container : vitasdk/vitasdk-softfp:latest
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+
16
+ - name : Install dependencies
17
+ run : |
18
+ git clone https://github.com/Rinnegatamante/vitaGL.git
19
+ make -C vitaGL SOFTFP_ABI=1 NO_DEBUG=1 SAMPLER_UNIFORMS=1 -j$(nproc) install
20
+ - name : Compile project
21
+ run : |
22
+ mkdir build
23
+ cd build
24
+ cmake ..
25
+ make -j$(nproc)
26
+ - name : Get current date
27
+ id : date
28
+ run : echo "::set-output name=date::$(date +'%Y-%m-%d')"
29
+ - name : Get changelog
30
+ id : changelog
31
+ run : echo "::set-output name=changelog::$(git log -10 --pretty=format:\"%s\")"
32
+ - name : Update release body
33
+ id : update_release
34
+ uses : Rinnegatamante/update_release@master
35
+ env :
36
+ GITHUB_TOKEN : ${{ github.token }}
37
+ with :
38
+ release_name : " Nightly ${{ steps.date.outputs.date }}"
39
+ body : " ${{ steps.date.outputs.changelog }}"
40
+ tag : Nightly
41
+ - name : Upload release artifacts
42
+ uses : actions/upload-release-asset@v1
43
+ env :
44
+ GITHUB_TOKEN : ${{ secrets.github_token }}
45
+ with :
46
+ upload_url : ${{ steps.update_release.outputs.upload_url }}
47
+ asset_path : build/YoYoLoader.vpk
48
+ asset_name : YoYoLoader.vpk
49
+ asset_content_type : application/zip
Original file line number Diff line number Diff line change @@ -49,11 +49,7 @@ target_link_libraries(YoYoLoader
49
49
SceCommonDialog_stub
50
50
SceDisplay_stub
51
51
SceKernelDmacMgr_stub
52
- SceRazorHud_stub
53
- SceRazorCapture_stub
54
- SceFios2_stub
55
52
SceGxm_stub
56
- SceLibcBridge_stub
57
53
SceShaccCg_stub
58
54
SceSysmodule_stub
59
55
ScePower_stub
@@ -96,11 +92,8 @@ target_link_libraries(loader
96
92
SceCommonDialog_stub
97
93
SceDisplay_stub
98
94
SceKernelDmacMgr_stub
99
- SceRazorHud_stub
100
- SceRazorCapture_stub
101
95
SceFios2_stub
102
96
SceGxm_stub
103
- SceLibcBridge_stub
104
97
SceShaccCg_stub
105
98
SceSysmodule_stub
106
99
ScePower_stub
You can’t perform that action at this time.
0 commit comments