Skip to content

Commit

Permalink
Pre release, instead of nightly [pre]
Browse files Browse the repository at this point in the history
  • Loading branch information
cncastillo committed Jul 3, 2024
1 parent 3e8c0f6 commit 85f8c59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml → .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
tags: '*'
jobs:
ci:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Nightly
name: PreRelease
on:
pull_request:
branches:
Expand All @@ -9,15 +9,15 @@ on:
tags: '*'
jobs:
nightly:
if: "contains(github.event.head_commit.message, '[nightly]')"
if: ${{ contains(github.event.head_commit.message, '[pre]') }}
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
version:
- 'nightly' # Latest version of Julia under development (you can expect many packages not to work with this version)
- 'pre' # Latest version of Julia under development (you can expect many packages not to work with this version)
os: [ubuntu-latest, windows-latest, macos-latest]
arch: [x64]
include:
Expand Down

0 comments on commit 85f8c59

Please sign in to comment.