From bc834fbf549bd44f342ec5824bf2750562cab97b Mon Sep 17 00:00:00 2001 From: Anton Fedurtsya Date: Wed, 15 Nov 2023 18:17:00 +0200 Subject: [PATCH] Run github actions on self-hosted runners Signed-off-by: Anton Fedurtsya --- .github/workflows/development.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index 176363d..bc691e6 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -52,7 +52,7 @@ env: jobs: install_shop_with_module: - runs-on: ubuntu-latest + runs-on: [self-hosted, x64] steps: - name: Clone testing environment run: git clone https://github.com/OXID-eSales/docker-eshop-sdk.git . @@ -154,7 +154,7 @@ jobs: styles: needs: [ install_shop_with_module ] - runs-on: ubuntu-latest + runs-on: [self-hosted, x64] steps: - name: Load current installation from cache uses: actions/cache@v3 @@ -223,7 +223,7 @@ jobs: unit_integration_tests: needs: [ install_shop_with_module ] - runs-on: ubuntu-latest + runs-on: [self-hosted, x64] steps: - name: Load current installation from cache uses: actions/cache@v3 @@ -273,7 +273,7 @@ jobs: codeception_twig: needs: [ install_shop_with_module ] - runs-on: ubuntu-latest + runs-on: [self-hosted, x64] steps: - name: Load current installation from cache uses: actions/cache@v3 @@ -332,7 +332,7 @@ jobs: sonarcloud: needs: [ styles, unit_integration_tests ] if: ${{ always() && inputs.report_sonarcloud }} - runs-on: ubuntu-latest + runs-on: [self-hosted, x64] steps: - name: Checkout current module uses: actions/checkout@v4