From 1410e60b572cebbf8391de1c265d4325938baa31 Mon Sep 17 00:00:00 2001 From: Anant Thazhemadam Date: Mon, 29 Apr 2024 20:10:57 +0530 Subject: [PATCH 1/2] ci: update documentation workflow to use centralised reusable workflow --- .github/workflows/Documentation.yml | 34 ++++++++++------------------- 1 file changed, 11 insertions(+), 23 deletions(-) diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml index cf2ebca..75c44b6 100644 --- a/.github/workflows/Documentation.yml +++ b/.github/workflows/Documentation.yml @@ -1,4 +1,5 @@ -name: Documentation +name: "Documentation" + on: push: branches: @@ -7,26 +8,13 @@ on: pull_request: schedule: - cron: '36 13 * * 5' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }} + jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@b32f140b0c872d58512e0a66172253c302617b90 - - uses: julia-actions/setup-julia@latest - with: - version: '1' - - 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 }} # For authentication with GitHub Actions token - DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} # For authentication with SSH deploy key - run: julia --project=docs/ docs/make.jl - - uses: julia-actions/julia-processcoverage@v1 - with: - directories: src - - uses: codecov/codecov-action@v4 - with: - files: lcov.info - token: ${{ secrets.CODECOV_TOKEN }} - fail_ci_if_error: true + build-and-deploy-docs: + name: "Documentation" + uses: "SciML/.github/.github/workflows/documentation.yml@v1" + secrets: "inherit" From 12f7a0138010d99e170c4b53a971e4d25db16236 Mon Sep 17 00:00:00 2001 From: Anant Thazhemadam Date: Thu, 2 May 2024 21:45:28 +0530 Subject: [PATCH 2/2] ci: update tests workflow to use centralised reusable workflow --- .github/workflows/CI.yml | 46 ------------------------------------- .github/workflows/Tests.yml | 34 +++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 46 deletions(-) delete mode 100644 .github/workflows/CI.yml create mode 100644 .github/workflows/Tests.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml deleted file mode 100644 index f27ccda..0000000 --- a/.github/workflows/CI.yml +++ /dev/null @@ -1,46 +0,0 @@ -name: CI -on: - pull_request: - branches: - - main - paths-ignore: - - 'docs/**' - push: - branches: - - main - paths-ignore: - - 'docs/**' - schedule: - - cron: '36 13 * * 5' -jobs: - test: - runs-on: ${{ matrix.os }} - env: - GROUP: ${{ matrix.group }} - strategy: - fail-fast: false - matrix: - group: - - Core - version: - - '1' - os: - - ubuntu-latest - - macos-latest - - windows-latest - steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 - with: - version: ${{ matrix.version }} - - uses: julia-actions/cache@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }} - - uses: julia-actions/julia-buildpkg@v1 - - uses: julia-actions/julia-runtest@v1 - with: - depwarn: error - - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v4 - with: - file: lcov.info \ No newline at end of file diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml new file mode 100644 index 0000000..e988b87 --- /dev/null +++ b/.github/workflows/Tests.yml @@ -0,0 +1,34 @@ +name: "Tests" + +on: + pull_request: + branches: + - main + paths-ignore: + - 'docs/**' + push: + branches: + - main + paths-ignore: + - 'docs/**' + schedule: + - cron: '36 13 * * 5' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }} + +jobs: + tests: + name: "Tests" + strategy: + fail-fast: false + matrix: + os: + - "ubuntu-latest" + - "macos-latest" + - "windows-latest" + uses: "SciML/.github/.github/workflows/tests.yml@v1" + with: + os: "${{ matrix.os }}" + secrets: "inherit"