From 023daaca3a904fa1928f733449ee7e49c2eb57d0 Mon Sep 17 00:00:00 2001 From: icweaver Date: Sun, 28 Sep 2025 14:11:18 -0700 Subject: [PATCH 1/2] reorg --- .github/workflows/CI_nightly.yml | 32 +++++++++++++++++++++ .github/workflows/{CI.yml => CI_stable.yml} | 3 +- .github/workflows/Documentation.yml | 2 +- README.md | 9 +++--- 4 files changed, 39 insertions(+), 7 deletions(-) create mode 100644 .github/workflows/CI_nightly.yml rename .github/workflows/{CI.yml => CI_stable.yml} (94%) diff --git a/.github/workflows/CI_nightly.yml b/.github/workflows/CI_nightly.yml new file mode 100644 index 0000000000..48c0426076 --- /dev/null +++ b/.github/workflows/CI_nightly.yml @@ -0,0 +1,32 @@ +name: Test JuliaAstro (nightly) + +on: + push: + branches: [main] + pull_request: + schedule: + - cron: '15 2 * * *' # 2:15 AM UTC every day +jobs: + test: + name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + version: + - 'nightly' + os: + - ubuntu-latest + arch: + - x64 + steps: + - uses: actions/checkout@v5 + - uses: julia-actions/setup-julia@v2 + with: + version: ${{ matrix.version }} + arch: ${{ matrix.arch }} + - uses: julia-actions/cache@v2 + - uses: julia-actions/julia-buildpkg@v1 + - uses: julia-actions/julia-runtest@v1 + with: + coverage: false diff --git a/.github/workflows/CI.yml b/.github/workflows/CI_stable.yml similarity index 94% rename from .github/workflows/CI.yml rename to .github/workflows/CI_stable.yml index dcc9223259..3771b652fa 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI_stable.yml @@ -1,4 +1,4 @@ -name: Test JuliaAstro packages +name: Test JuliaAstro (stable) on: push: @@ -15,7 +15,6 @@ jobs: matrix: version: - '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia. - - 'nightly' os: - ubuntu-latest arch: diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml index d619085dd8..a7c1c77903 100644 --- a/.github/workflows/Documentation.yml +++ b/.github/workflows/Documentation.yml @@ -7,7 +7,7 @@ on: - cron: '15 2 * * *' # 2:15 AM UTC every day jobs: docs: - name: MultiDocumentation + name: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 diff --git a/README.md b/README.md index 839159d9c3..5fbe206114 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,11 @@ JuliaAstro.github.io ==================== -[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaastro.org/) -[![Build website](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/Documentation.yml/badge.svg)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/Documentation.yml) -[![pages-build-deployment](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/pages/pages-build-deployment/badge.svg?branch=gh-pages)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/pages/pages-build-deployment) -[![Test JuliaAstro packages](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/CI.yml) +[![docs](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaastro.org/) +[![Build](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/Documentation.yml/badge.svg)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/Documentation.yml) +[![Deploy](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/pages/pages-build-deployment/badge.svg?branch=gh-pages)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/pages/pages-build-deployment) +[![Test JuliaAstro (stable)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/CI_stable.yml/badge.svg)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/CI_stable.yml) +[![Test JuliaAstro (nightly)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/CI_nightly.yml/badge.svg)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/CI_nightly.yml) ## Description From d75e37b58bd7ee754c1567c2b4a678ea3aba721a Mon Sep 17 00:00:00 2001 From: icweaver Date: Wed, 8 Oct 2025 21:17:14 -0700 Subject: [PATCH 2/2] nightly --> pre --- .github/workflows/{CI_stable.yml => CI.yml} | 5 ++-- .github/workflows/CI_nightly.yml | 32 --------------------- README.md | 3 +- 3 files changed, 4 insertions(+), 36 deletions(-) rename .github/workflows/{CI_stable.yml => CI.yml} (88%) delete mode 100644 .github/workflows/CI_nightly.yml diff --git a/.github/workflows/CI_stable.yml b/.github/workflows/CI.yml similarity index 88% rename from .github/workflows/CI_stable.yml rename to .github/workflows/CI.yml index 3771b652fa..de9f9a3613 100644 --- a/.github/workflows/CI_stable.yml +++ b/.github/workflows/CI.yml @@ -1,4 +1,4 @@ -name: Test JuliaAstro (stable) +name: Test JuliaAstro on: push: @@ -14,7 +14,8 @@ jobs: fail-fast: false matrix: version: - - '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia. + - "1" # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia. + - "pre" os: - ubuntu-latest arch: diff --git a/.github/workflows/CI_nightly.yml b/.github/workflows/CI_nightly.yml deleted file mode 100644 index 48c0426076..0000000000 --- a/.github/workflows/CI_nightly.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Test JuliaAstro (nightly) - -on: - push: - branches: [main] - pull_request: - schedule: - - cron: '15 2 * * *' # 2:15 AM UTC every day -jobs: - test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - version: - - 'nightly' - os: - - ubuntu-latest - arch: - - x64 - steps: - - uses: actions/checkout@v5 - - uses: julia-actions/setup-julia@v2 - with: - version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - - uses: julia-actions/cache@v2 - - uses: julia-actions/julia-buildpkg@v1 - - uses: julia-actions/julia-runtest@v1 - with: - coverage: false diff --git a/README.md b/README.md index 5fbe206114..f482920113 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,7 @@ JuliaAstro.github.io [![docs](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliaastro.org/) [![Build](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/Documentation.yml/badge.svg)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/Documentation.yml) [![Deploy](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/pages/pages-build-deployment/badge.svg?branch=gh-pages)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/pages/pages-build-deployment) -[![Test JuliaAstro (stable)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/CI_stable.yml/badge.svg)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/CI_stable.yml) -[![Test JuliaAstro (nightly)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/CI_nightly.yml/badge.svg)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/CI_nightly.yml) +[![Test JuliaAstro](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/CI.yml/badge.svg)](https://github.com/JuliaAstro/JuliaAstro.github.io/actions/workflows/CI.yml) ## Description