This commit is contained in:
parent
799bb6b8cd
commit
33ac3ae213
1 changed files with 5 additions and 3 deletions
8
.github/workflows/build.yaml
vendored
8
.github/workflows/build.yaml
vendored
|
@ -13,10 +13,12 @@ jobs:
|
||||||
- name: install dependencies
|
- name: install dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update -y
|
apt update -y
|
||||||
apt install -y curl
|
apt install -y curl gcc g++ make
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
override: true
|
override: true
|
||||||
- name: Build
|
- uses: actions-rs/cargo@v1
|
||||||
run: cargo build --verbose
|
with:
|
||||||
|
command: build
|
||||||
|
args: --verbose --all
|
||||||
|
|
Loading…
Reference in a new issue