revert previous change
All checks were successful
Basic Cargo Checks / docker-check (push) Successful in 52s
Basic Cargo Checks / docker-build (push) Successful in 2m19s

This commit is contained in:
Blizzard Finnegan 2023-06-14 15:31:37 -04:00
parent e666931d1a
commit c1e3efdb8c
Signed by: blizzardfinnegan
GPG key ID: 61C1E13067E0018E

View file

@ -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: