Sh runner (#292)

* set self-hosted runner
* set GH runner for pylint
This commit is contained in:
rusdacent 2021-01-06 23:51:01 +03:00 committed by GitHub
parent 88ed32483d
commit b2b295c3f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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