Skip to content

Commit ea540de

Browse files
authored
Try self hosted. (#207)
1 parent 0ac84f2 commit ea540de

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# This workflow contains a single job called "build-test"
2020
build-test:
2121
# The type of runner that the job will run on Ubuntu 18.04 (latest)
22-
runs-on: ubuntu-latest
22+
runs-on: self-hosted
2323

2424
# Steps represent a sequence of tasks that will be
2525
# executed as part of the job
@@ -61,7 +61,7 @@ jobs:
6161
- build-test
6262

6363
# The type of runner that the job will run on Ubuntu 18.04 (latest)
64-
runs-on: ubuntu-latest
64+
runs-on: self-hosted
6565

6666
# Steps represent a sequence of tasks that will be
6767
# executed as part of the job

.github/workflows/pr.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
# that can run sequentially or in parallel
1616
jobs:
1717
run_test:
18-
runs-on: ubuntu-latest
18+
runs-on: self-hosted
1919

2020
# Steps represent a sequence of tasks that will be
2121
# executed as part of the job
@@ -50,7 +50,7 @@ jobs:
5050
BRANCH_NAME=${{ github.event.pull_request.head.ref }} ./run_test_container.sh
5151
5252
run_test_conda_gpu:
53-
runs-on: ubuntu-latest
53+
runs-on: self-hosted
5454

5555
# Steps represent a sequence of tasks that will be
5656
# executed as part of the job
@@ -88,7 +88,7 @@ jobs:
8888
./run_test_container.sh aperturedata/aperturedb-pytorch-gpu
8989
9090
build_images:
91-
runs-on: ubuntu-latest
91+
runs-on: self-hosted
9292
steps:
9393
# Checks-out your repository under $GITHUB_WORKSPACE,
9494
# so your job can access it

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# This workflow contains a single job called "build-test"
2020
build-test:
2121
# The type of runner that the job will run on Ubuntu 18.04 (latest)
22-
runs-on: ubuntu-latest
22+
runs-on: self-hosted
2323

2424
# Steps represent a sequence of tasks that will be
2525
# executed as part of the job
@@ -58,7 +58,7 @@ jobs:
5858
build_and_deploy_docs:
5959

6060
# The type of runner that the job will run on Ubuntu 18.04 (latest)
61-
runs-on: ubuntu-latest
61+
runs-on: self-hosted
6262

6363
# Steps represent a sequence of tasks that will be
6464
# executed as part of the job

0 commit comments

Comments
 (0)