From 5b5295fc3b3bb19126e9d663968486b95cfb6598 Mon Sep 17 00:00:00 2001 From: alvicsam Date: Thu, 14 Mar 2024 12:14:06 +0100 Subject: [PATCH] test wo docker --- .github/workflows/ci.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) 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