mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-09 22:21:45 +00:00
VITA: No longer pull latest vitaGL
This commit is contained in:
parent
99ca44f339
commit
4fa92811be
2 changed files with 4 additions and 5 deletions
7
.github/workflows/build-and-release.yml
vendored
7
.github/workflows/build-and-release.yml
vendored
|
@ -12,15 +12,14 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
apk add bash build-base zip git curl cmake
|
apk add bash build-base zip git curl cmake
|
||||||
vdpm vitashark
|
vdpm vitashark
|
||||||
vdpm vitagl
|
|
||||||
git clone https://github.com/bythos14/SceShaccCgExt.git
|
git clone https://github.com/bythos14/SceShaccCgExt.git
|
||||||
cd SceShaccCgExt
|
cd SceShaccCgExt
|
||||||
mkdir build && cd build
|
mkdir build && cd build
|
||||||
cmake .. && make -j12 install
|
cmake .. && make -j32 install
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ./
|
working-directory: ./
|
||||||
run: |
|
run: |
|
||||||
make -j12 -f Makefile.vita
|
make -j32 -f Makefile.vita
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
@ -36,7 +35,7 @@ jobs:
|
||||||
- name: Build
|
- name: Build
|
||||||
working-directory: ./
|
working-directory: ./
|
||||||
run: |
|
run: |
|
||||||
make -j12 -f Makefile.nx
|
make -j32 -f Makefile.nx
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
@ -115,7 +115,7 @@ void utf2ascii(char* dst, uint16_t* src){
|
||||||
*dst=0x00;
|
*dst=0x00;
|
||||||
}
|
}
|
||||||
|
|
||||||
int nzp_main (SceSize, void*)
|
int nzp_main (unsigned int argc, char *argv[])
|
||||||
#else
|
#else
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue