We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfe2140 commit 39674caCopy full SHA for 39674ca
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+name: Build examples
2
+
3
+on:
4
+ pull_request:
5
6
+jobs:
7
+ build:
8
+ runs-on: ubuntu-latest
9
+ container:
10
+ image: ghcr.io/vita-rust/vitasdk-rs
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v4
14
+ - name: Build
15
+ run: |
16
+ cargo vita build vpk --release --package vita-std-tests --tests
17
+ cargo vita build vpk --release
18
+ mv target/armv7-sony-vita-newlibeabihf/release/deps/*.vpk target/armv7-sony-vita-newlibeabihf/release/
19
+ - name: Upload Artifacts
20
+ uses: actions/upload-artifact@v3
21
+ with:
22
+ name: examples
23
+ path: target/armv7-sony-vita-newlibeabihf/release/*.vpk
.github/workflows/release.yml
@@ -1,4 +1,4 @@
-name: Build examples
+name: Build and publish examples
on:
push:
0 commit comments