From 2203632ed8ced7c4b5f96036ec32cc5eb78c02a0 Mon Sep 17 00:00:00 2001 From: Huiyu Xie Date: Mon, 7 Oct 2024 21:04:15 -1000 Subject: [PATCH] Add dependencies to documentation (#67) * Start * Fix error * Fix README.md * Add tutorials * Add new logo * Change logo * Final logo * Add dependencies * Minor fix on CI * Remove docs build * Minor test --- .github/workflows/Documentation.yml | 29 ----------------------------- docs/Project.toml | 3 +++ docs/src/index.md | 4 +++- 3 files changed, 6 insertions(+), 30 deletions(-) delete mode 100644 .github/workflows/Documentation.yml diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml deleted file mode 100644 index 5591e22..0000000 --- a/.github/workflows/Documentation.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Documentation -on: - push: - branches: - - main # update to match your development branch (master, main, dev, trunk, ...) - tags: "*" - pull_request: - -jobs: - build: - permissions: - actions: write - contents: write - pull-requests: read - statuses: write - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v2 - with: - version: "1" - - uses: julia-actions/cache@v2 - - name: Install dependencies - run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' - - name: Build and deploy - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # If authenticating with GitHub Actions token - DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # If authenticating with SSH deploy key - run: julia --project=docs/ docs/make.jl diff --git a/docs/Project.toml b/docs/Project.toml index 31c4695..a947bea 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -1,5 +1,8 @@ [deps] +CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba" Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" +Trixi = "a7f1ee26-1774-49b1-8366-f1abc58fbfcb" +TrixiBase = "9a0f1c46-06d5-4909-a5a3-ce25d3fa3284" [extras] Trixi = "a7f1ee26-1774-49b1-8366-f1abc58fbfcb" diff --git a/docs/src/index.md b/docs/src/index.md index de91950..bbe9d83 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -1 +1,3 @@ -# TrixiCUDA.jl \ No newline at end of file +# TrixiCUDA.jl + +TrixiCUDA.jl is a component package of the Trixi.jl ecosystem and provides GPU acceleration support for solving hyperbolic partial differential equations (PDEs). \ No newline at end of file