Skip to content

Commit

Permalink
ci: #3
Browse files Browse the repository at this point in the history
  • Loading branch information
cormullion committed Mar 7, 2024
1 parent 153dded commit 4b7e137
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 20 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/JuliaNightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: JuliaNightly
# Nightly Scheduled Julia Nightly Run
on:
schedule:
- cron: '0 2 * * *' # Daily at 2 AM UTC (8 PM CST)
jobs:
test:
name: Julia Nightly - Ubuntu - x64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: nightly
arch: x64
- uses: actions/cache@v4
env:
cache-name: julia-nightly-cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ env.cache-name }}-
- uses: julia-actions/julia-buildpkg@latest
- run: |
git config --global user.name Tester
git config --global user.email [email protected]
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
files: lcov.info
25 changes: 5 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,33 +15,18 @@ jobs:
fail-fast: false
matrix:
version:
- '1'
- '1.9'
- 'nightly'
- "1.9"
- "1" # Latest Release
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
arch:
- x64
allow_failure: [false]
include:
- version: '1'
os: ubuntu-latest
- os: ubuntu-latest
version: 1.10.0
arch: x64
allow_failure: false
- version: 'nightly'
os: ubuntu-latest
arch: x64
allow_failure: true
- version: 'nightly'
os: macOS-latest
arch: x64
allow_failure: true
- version: 'nightly'
os: windows-latest
arch: x64
allow_failure: true
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
Expand Down

0 comments on commit 4b7e137

Please sign in to comment.