From 69e4c1f5a0aa25e3ef4d36b72256e42446cfd07e Mon Sep 17 00:00:00 2001 From: Hiroshi Shinaoka Date: Sun, 19 May 2024 14:20:30 +0200 Subject: [PATCH 1/4] Fixing CI --- .github/workflows/CI.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 9f9d79d..d60e53b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -33,6 +33,13 @@ jobs: with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} + - name: Add Julia Registries + run: | + julia -e ' + using Pkg + Pkg.Registry.add( + RegistrySpec(url = "git@github.com:tensor4all/T4ARegistry.git") + )' - uses: julia-actions/cache@v1 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 @@ -51,4 +58,4 @@ jobs: - uses: julia-actions/julia-docdeploy@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} \ No newline at end of file + DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} From 3aa31b2f41e9922824dff0e325f54ff20539ae9e Mon Sep 17 00:00:00 2001 From: Hiroshi Shinaoka Date: Sun, 19 May 2024 14:21:51 +0200 Subject: [PATCH 2/4] Fixing CI --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index d60e53b..2a36a0f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -2,7 +2,7 @@ name: CI on: push: branches: - - main + - '**' pull_request: branches: - main From bef472e1e483bddeafffe7b387a489bbf6f0d716 Mon Sep 17 00:00:00 2001 From: Hiroshi Shinaoka Date: Sun, 19 May 2024 14:23:24 +0200 Subject: [PATCH 3/4] Fixing CI --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 2a36a0f..80a8894 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -38,7 +38,7 @@ jobs: julia -e ' using Pkg Pkg.Registry.add( - RegistrySpec(url = "git@github.com:tensor4all/T4ARegistry.git") + RegistrySpec(url = "https://github.com/tensor4all/T4ARegistry.git") )' - uses: julia-actions/cache@v1 - uses: julia-actions/julia-buildpkg@v1 From af4d18bfb68a0de5d3436b5ce0c021fd94496ccc Mon Sep 17 00:00:00 2001 From: Hiroshi Shinaoka Date: Sun, 19 May 2024 14:26:05 +0200 Subject: [PATCH 4/4] Fixing CI --- .github/workflows/CI.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 80a8894..e37f915 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -54,6 +54,13 @@ jobs: - uses: julia-actions/setup-julia@v2 with: version: '1' + - name: Add Julia Registries + run: | + julia -e ' + using Pkg + Pkg.Registry.add( + RegistrySpec(url = "https://github.com/tensor4all/T4ARegistry.git") + )' - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-docdeploy@v1 env: