Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try self hosted runner #4573

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@ concurrency:
jobs:
makie:
name: Julia ${{ matrix.version }}
runs-on: ${{ matrix.os }}
runs-on: self-hosted
strategy:
fail-fast: false
matrix:
version:
- '1.6'
- '1'
os:
- ubuntu-20.04
arch:
- x64
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reference_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ concurrency:
jobs:
cairomakie:
name: CairoMakie Julia ${{ matrix.version }}
runs-on: ${{ matrix.os }}
runs-on: self-hosted
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
name: GLMakie Julia ${{ matrix.version }}
env:
MODERNGL_DEBUGGING: "true" # turn on errors when running OpenGL tests
runs-on: ${{ matrix.os }}
runs-on: self-hosted
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:

wglmakie:
name: WGLMakie Julia ${{ matrix.version }}
runs-on: ${{ matrix.os }}
runs-on: self-hosted
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:

consolidation:
name: Merge artifacts
runs-on: ubuntu-20.04
runs-on: self-hosted
if: ${{ always() }} # run even if any of the three backend test jobs failed
needs: [cairomakie, glmakie, wglmakie]
steps:
Expand Down
Loading