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