Try fixing docker ci build
ubuntu / stable / cross-${{ matrix.target }} (armv7-unknown-linux-gnueabihf) Details
ubuntu / stable / fmt Details
ubuntu / stable / cross-${{ matrix.target }} (aarch64-unknown-linux-gnu) Details

This commit is contained in:
Hans Mündelein 2023-06-12 09:47:40 +02:00
parent 3cff753275
commit 0c66165598
Signed by: hans
GPG Key ID: BA7B55E984CE74F4
1 changed files with 6 additions and 2 deletions

View File

@ -8,7 +8,7 @@ on:
jobs: jobs:
fmt: fmt:
runs-on: ubuntu-latest runs-on: dind
name: ubuntu / stable / fmt name: ubuntu / stable / fmt
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -19,7 +19,7 @@ jobs:
- name: cargo fmt --check - name: cargo fmt --check
run: cargo fmt --check --all run: cargo fmt --check --all
cross: cross:
runs-on: ubuntu-latest runs-on: dind
name: ubuntu / stable / cross-${{ matrix.target }} name: ubuntu / stable / cross-${{ matrix.target }}
strategy: strategy:
fail-fast: false fail-fast: false
@ -27,6 +27,10 @@ jobs:
target: ["armv7-unknown-linux-gnueabihf", "aarch64-unknown-linux-gnu"] target: ["armv7-unknown-linux-gnueabihf", "aarch64-unknown-linux-gnu"]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
# - name: Install podman
# run: |
# apt update
# apt-get -y install podman
- name: Install stable - name: Install stable
uses: https://github.com/dtolnay/rust-toolchain@stable uses: https://github.com/dtolnay/rust-toolchain@stable
- uses: https://github.com/taiki-e/install-action@cross - uses: https://github.com/taiki-e/install-action@cross