Skip to content

Commit

Permalink
move from self-hosted to ubuntu-latest since we made repo public
Browse files Browse the repository at this point in the history
  • Loading branch information
baggepinnen committed Sep 25, 2024
1 parent c25b91d commit 04b01d2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 15 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ env:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: self-hosted
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version:
- '1'
os:
- self-hosted
- ubuntu-latest
arch:
- x64
steps:
Expand All @@ -31,14 +31,11 @@ jobs:
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: webfactory/ssh-agent@v0.8.0
with:
ssh-private-key: ${{ secrets.JULIASIM_REGISTRY_SSH_KEY }}
- uses: PumasAI/add-private-registry@main
with:
juliahub_token_encoded: ${{ secrets.JULIAHUB_TOKEN_ENCODED }}
private_registry_name: JuliaSimRegistry
private_registry_uuid: 309a7822-a73e-4490-9504-7d1983f27685
private_registry_name: JuliaHubRegistry
private_registry_uuid: de52bcdf-fcb2-40cf-a397-3d64b64f4d9c
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
workflow_dispatch:
jobs:
CompatHelper:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,17 @@ jobs:
permissions:
contents: write
statuses: write
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
- uses: julia-actions/setup-julia@latest
with:
version: '1'
- uses: webfactory/ssh-agent@v0.8.0
with:
ssh-private-key: ${{ secrets.JULIASIM_REGISTRY_SSH_KEY }}
- uses: PumasAI/add-private-registry@main
with:
juliahub_token_encoded: ${{ secrets.JULIAHUB_TOKEN_ENCODED }}
private_registry_name: JuliaSimRegistry
private_registry_uuid: 309a7822-a73e-4490-9504-7d1983f27685
private_registry_name: JuliaHubRegistry
private_registry_uuid: de52bcdf-fcb2-40cf-a397-3d64b64f4d9c
- name: Install dependencies
run: DISPLAY=:0 xvfb-run --auto-servernum -s '-screen 0 1024x768x24' julia --project=docs -e 'using Pkg;
Pkg.setprotocol!(; domain = "github.com", protocol = "ssh");
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
github.actor == 'ChrisRackauckas' &&
startsWith(github.event.comment.body, 'Triggering TagBot')
)
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
Expand Down

0 comments on commit 04b01d2

Please sign in to comment.