Try pixi v0.31.0 with disabled cache #1758
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Julia Run Testmodels | |
on: | |
push: | |
branches: [main, update/pixi-lock, update/julia-manifest] | |
paths-ignore: [".teamcity/**"] | |
tags: ["*"] | |
pull_request: | |
paths-ignore: [".teamcity/**"] | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# needed to allow julia-actions/cache to delete old caches that it has created | |
permissions: | |
actions: write | |
contents: read | |
jobs: | |
test: | |
name: Julia ${{ matrix.os }} - ${{ matrix.arch }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
# https://github.com/Deltares/Ribasim/issues/825 | |
# - macOS-latest | |
- windows-latest | |
arch: | |
- x64 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/cache@v2 | |
with: | |
cache-compiled: "true" | |
cache-registries: "true" | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.31.0 | |
cache: false | |
- name: Prepare pixi | |
run: pixi run install-ci | |
- name: Run testmodels with Ribasim Core | |
run: | | |
pixi run ribasim-core-testmodels |