diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5e231f0..f000ab71 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,12 +37,18 @@ jobs: test: name: "test" runs-on: ubuntu-latest - container: - image: ${{ vars.CI_IMAGE }} - options: --privileged + # container: + # image: ${{ vars.CI_IMAGE }} steps: - uses: actions/checkout@v3 + - name: Install Rust stable toolchain + uses: actions-rs/toolchain@v1.0.7 + with: + profile: minimal + toolchain: stable + override: true + - name: Rust Cache uses: Swatinem/rust-cache@v2.5.0 with: @@ -51,7 +57,7 @@ jobs: - name: test run: | - apt-get update && apt-get install -y iproute2 + sudo apt-get update && sudo apt-get install -y iproute2 ip a cargo test