Chore/use self hosted runners (#1475)

* chore: edit manual flow

* chore: install yarn in flow

* chore: change runner for remaining flows

* chore: add yarn install to other flows
This commit is contained in:
Joe Tsang 2022-09-26 12:15:05 +01:00 committed by GitHub
parent 5d553271a5
commit b885696659
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 3 deletions

View File

@ -24,7 +24,7 @@ on:
jobs: jobs:
manual: manual:
name: Run capsule tests -- manual trigger name: Run capsule tests -- manual trigger
runs-on: ubuntu-latest runs-on: self-hosted
env: env:
GO111MODULE: 'on' GO111MODULE: 'on'
VEGA_VERSION: 'v0.55.0' VEGA_VERSION: 'v0.55.0'
@ -43,6 +43,12 @@ jobs:
with: with:
node-version: 16 node-version: 16
#######
## Install Yarn
#######
- name: Setup yarn
run: npm install -g yarn
####### #######
## Checkout repos ## Checkout repos
####### #######

View File

@ -9,7 +9,7 @@ on:
jobs: jobs:
nightly: nightly:
name: Run capsule tests -- nightly name: Run capsule tests -- nightly
runs-on: ubuntu-latest runs-on: self-hosted
env: env:
GO111MODULE: 'on' GO111MODULE: 'on'
VEGA_VERSION: 'v0.55.0' VEGA_VERSION: 'v0.55.0'
@ -28,6 +28,12 @@ jobs:
with: with:
node-version: 16 node-version: 16
#######
## Install Yarn
#######
- name: Setup yarn
run: npm install -g yarn
####### #######
## Checkout repos ## Checkout repos
####### #######

View File

@ -15,7 +15,7 @@ on:
jobs: jobs:
pr: pr:
name: Run capsule tests - PR name: Run capsule tests - PR
runs-on: ubuntu-latest runs-on: self-hosted
env: env:
GO111MODULE: 'on' GO111MODULE: 'on'
VEGA_VERSION: 'v0.55.0' VEGA_VERSION: 'v0.55.0'
@ -34,6 +34,12 @@ jobs:
with: with:
node-version: 16 node-version: 16
#######
## Install Yarn
#######
- name: Setup yarn
run: npm install -g yarn
####### #######
## Checkout repos ## Checkout repos
####### #######