Browse Source

debug

checkpoints
Aditya Kulkarni 5 years ago
parent
commit
101cdc9cfa
  1. 14
      .github/workflows/rust.yml

14
.github/workflows/rust.yml

@ -30,6 +30,9 @@ jobs:
with:
command: test
args: --verbose --release --all
- run: pwd
- run: ls target/
- run: ls target/release/
- name: Upload
uses: actions/upload-artifact@v1
with:
@ -51,6 +54,9 @@ jobs:
use-cross: true
command: build
args: --target armv7-unknown-linux-gnueabihf
- run: pwd
- run: ls target/
- run: ls target/release/
- name: Upload
uses: actions/upload-artifact@v1
with:
@ -71,7 +77,10 @@ jobs:
with:
use-cross: true
command: build
args: --target aarch64-unknown-linux-gnu
args: --target aarch64-unknown-linux-gnu
- run: pwd
- run: ls target/
- run: ls target/release/
- name: Upload
uses: actions/upload-artifact@v1
with:
@ -93,6 +102,9 @@ jobs:
use-cross: true
command: build
args: --target x86_64-pc-windows-gnu
- run: pwd
- run: ls target/
- run: ls target/release/
- name: Upload
uses: actions/upload-artifact@v1
with:

Loading…
Cancel
Save