revert previous change
This commit is contained in:
parent
e666931d1a
commit
c1e3efdb8c
1 changed files with 16 additions and 2 deletions
|
@ -3,25 +3,39 @@ run-name: ${{ github.actor }} is testing
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
docker-check:
|
docker-check:
|
||||||
runs-on: rust
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
- name: Grab misc. dependencies
|
- name: Grab misc. dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update && apt install -y librust-libudev-sys-dev build-essential
|
apt update && apt install -y librust-libudev-sys-dev build-essential
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
- name: Grab Rust toolchain
|
||||||
|
uses: https://github.com/actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: stable
|
||||||
|
target: aarch64-unknown-linux-gnu
|
||||||
|
override: true
|
||||||
- name: Run check
|
- name: Run check
|
||||||
uses: https://github.com/actions-rs/cargo@v1
|
uses: https://github.com/actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: check
|
command: check
|
||||||
docker-build:
|
docker-build:
|
||||||
runs-on: rust
|
runs-on: docker
|
||||||
steps:
|
steps:
|
||||||
- name: Grab misc. dependencies
|
- name: Grab misc. dependencies
|
||||||
run: |
|
run: |
|
||||||
apt update && apt install -y librust-libudev-sys-dev build-essential
|
apt update && apt install -y librust-libudev-sys-dev build-essential
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
- name: Grab Rust toolchain
|
||||||
|
uses: https://github.com/actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
profile: minimal
|
||||||
|
toolchain: stable
|
||||||
|
target: aarch64-unknown-linux-gnu
|
||||||
|
override: true
|
||||||
- name: Run check
|
- name: Run check
|
||||||
uses: https://github.com/actions-rs/cargo@v1
|
uses: https://github.com/actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Add table
Reference in a new issue