Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
os: macos-15-intel
steps:
- uses: actions/checkout@v7
- uses: prefix-dev/setup-pixi@v0.10.0
- uses: prefix-dev/setup-pixi@v0.10.1
with:
cache: true
- name: Build installer
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: prefix-dev/setup-pixi@v0.10.0
- uses: prefix-dev/setup-pixi@v0.10.1
with:
cache: true
environments: release
Expand Down Expand Up @@ -197,7 +197,10 @@ jobs:
- name: Prepare environment
run: |
pip install typer pyyaml gitpython packaging
git clone https://github.com/DIRACGrid/DIRAC.git -b "${{ matrix.dirac-branch }}" DIRACRepo
# HACK: DO NOT MERGE - clone the plot-test fix branches instead of the real ones
git clone https://github.com/chrisburr/DIRAC.git -b "fix/plot-tests-numpy-bins-${DIRAC_BRANCH#rel-}" DIRACRepo
env:
DIRAC_BRANCH: ${{ matrix.dirac-branch }}
- name: Run tests
run: |
DIRACOS_TARBALL_PATH=$(echo ${PWD}/DIRACOS-*.sh)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: prefix-dev/setup-pixi@v0.10.0
- uses: prefix-dev/setup-pixi@v0.10.1
with:
cache: true
environments: release
Expand Down