From a665dd155479df63f3d3b324dc9379e333fdeaae Mon Sep 17 00:00:00 2001 From: c1nd0r <84794800+juankaukian@users.noreply.github.com> Date: Wed, 27 Dec 2023 14:03:59 +0200 Subject: [PATCH] Changing runners for test workflow to use our self-hosted --- .github/workflows/tests.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 082eab8b..525b10f9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ name: tests jobs: clippy: name: Actions - clippy - runs-on: ubuntu-latest + runs-on: self-hosted steps: - uses: actions/checkout@v1 with: @@ -24,7 +24,7 @@ jobs: rustfmt: name: Actions - rustfmt - runs-on: ubuntu-latest + runs-on: self-hosted steps: - uses: actions/checkout@v1 with: @@ -39,10 +39,7 @@ jobs: unit-test: name: Actions - unit test - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest] + runs-on: self-hosted steps: - uses: actions/checkout@v1 - uses: actions-rs/toolchain@v1 @@ -56,10 +53,7 @@ jobs: RUST_BACKTRACE: 1 integration-test: name: Actions - integration test - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest] + runs-on: self-hosted steps: - name: Upgrade docker compose to use v2 run: sudo curl -L "https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && sudo chmod +x /usr/local/bin/docker-compose