Skip to content

Commit b7c8ba7

Browse files
authored
Update CI.yml
1 parent 0375196 commit b7c8ba7

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/CI.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ env:
1313
jobs:
1414
test:
1515
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16-
runs-on: ubuntu-latest
16+
runs-on: self-hosted
1717
strategy:
1818
fail-fast: false
1919
matrix:
2020
version:
2121
- '1'
2222
os:
23-
- ubuntu-latest
23+
- self-hosted
2424
arch:
2525
- x64
2626
steps:
@@ -31,10 +31,18 @@ jobs:
3131
with:
3232
version: ${{ matrix.version }}
3333
arch: ${{ matrix.arch }}
34+
- uses: webfactory/[email protected]
35+
with:
36+
ssh-private-key: ${{ secrets.JULIASIM_REGISTRY_SSH_KEY }}
3437
- uses: PumasAI/add-private-registry@main
3538
with:
3639
juliahub_token_encoded: ${{ secrets.JULIAHUB_TOKEN_ENCODED }}
3740
private_registry_name: JuliaSimRegistry
3841
private_registry_uuid: 309a7822-a73e-4490-9504-7d1983f27685
3942
- uses: julia-actions/julia-buildpkg@v1
4043
- uses: julia-actions/julia-runtest@v1
44+
- uses: julia-actions/julia-processcoverage@v1
45+
- uses: codecov/codecov-action@v4
46+
with:
47+
token: ${{ secrets.CODECOV_TOKEN }}
48+
if: matrix.os == 'ubuntu-latest' && matrix.arch == 'x64'

0 commit comments

Comments
 (0)