From b2b295c3f9b9c06b37f6edbed3ef571d23d90324 Mon Sep 17 00:00:00 2001 From: rusdacent <57439765+rusdacent@users.noreply.github.com> Date: Wed, 6 Jan 2021 23:51:01 +0300 Subject: [PATCH] Sh runner (#292) * set self-hosted runner * set GH runner for pylint --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a82ffb9..205eabc9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: [self-hosted] steps: - name: Checkout code uses: actions/checkout@v2 @@ -74,7 +74,7 @@ jobs: upload: name: Upload artifacts to external storage needs: build - runs-on: ubuntu-latest + runs-on: [self-hosted] steps: - name: Get bootloader uses: actions/download-artifact@v2 @@ -111,7 +111,7 @@ jobs: name: Create latest full firmware needs: upload if: github.ref == 'refs/heads/master' - runs-on: ubuntu-latest + runs-on: [self-hosted] steps: - name: Get bootloader uses: actions/download-artifact@v2 @@ -146,7 +146,7 @@ jobs: name: Generate pic needs: fullfirmware if: github.ref == 'refs/heads/master' - runs-on: ubuntu-latest + runs-on: [self-hosted] steps: - name: Checkout code uses: actions/checkout@v2