From ca535e4635f2df43cf029883247b45867b23db29 Mon Sep 17 00:00:00 2001 From: kevmoor Date: Mon, 8 Apr 2024 15:50:33 -0600 Subject: [PATCH] Update CI for custom dependency until that dependency is registered --- .github/workflows/CI.yaml | 2 ++ .github/workflows/Documentation.yml | 2 +- README.md | 2 +- docs/Project.toml | 9 +++++++++ 4 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 docs/Project.toml diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 9ddce1b..943d3c3 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -31,5 +31,7 @@ jobs: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - uses: julia-actions/cache@v1 + - name: Install OpenFASTWrappers + run: julia --project=./ -e 'using Pkg; Pkg.add(PackageSpec(url="https://github.com/sandialabs/OWENSOpenFASTWrappers.jl.git")); Pkg.instantiate()' - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml index 2967e35..95f018d 100644 --- a/.github/workflows/Documentation.yml +++ b/.github/workflows/Documentation.yml @@ -20,7 +20,7 @@ jobs: - name: Install dependencies env: PYTHON: "" - run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' + run: julia --project=docs/ -e 'using Pkg; Pkg.add(PackageSpec(url="https://github.com/sandialabs/OWENSOpenFASTWrappers.jl.git")); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' - name: Build and deploy env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token diff --git a/README.md b/README.md index 012b6c8..91f8ca4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # OWENSAero.jl -[![](https://img.shields.io/badge/docs-stable-blue.svg)](github.com/sandialabs/OWENSAero.jl.git) +[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://sandialabs.github.io/OWENSAero.jl) ![](https://github.com/sandialabs/OWENSAero.jl/workflows/CI/badge.svg) This repository contains a set of aerodynamic tools for VAWTs both steady and unsteady operation, 2D and diff --git a/docs/Project.toml b/docs/Project.toml new file mode 100644 index 0000000..238937a --- /dev/null +++ b/docs/Project.toml @@ -0,0 +1,9 @@ +[deps] +BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" +Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" +Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306" +ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267" +Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb" + +[extras] +CPUSummary = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9" \ No newline at end of file