Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix(test): pixi configuration
  • Loading branch information
nttg8100 committed Mar 28, 2026
commit f43c774a3ac435fea72221a5e7063774d57bbd24
3 changes: 0 additions & 3 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
path: /tmp/slurm-build-cache
key: slurm-build-${{ hashFiles('roles/slurm-common/defaults/main.yml', 'roles/slurm-master/defaults/main.yml') }}

- name: Patch molecule-docker boolean bug (ansible-core 2.19 compat)
run: pixi run patch-molecule-docker

- name: Run Molecule
run: pixi run molecule test
env:
Expand Down
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
.PHONY: vm-start vm-status cluster
.PHONY: vm-start vm-status install test cluster
${HOME}/.pixi/bin/pixi:
curl -sSL https://pixi.sh/install.sh | sh

vm-start:
vm-start: ${HOME}/.pixi/bin/pixi
bash scripts/setup.sh 24.04 true

vm-status:
vm-status: ${HOME}/.pixi/bin/pixi
cd scripts/virtual/24.04 && vagrant status

install:
install: ${HOME}/.pixi/bin/pixi
${HOME}/.pixi/bin/pixi run ansible-galaxy install -r requirements.yml -p roles

test:
test: ${HOME}/.pixi/bin/pixi
${HOME}/.pixi/bin/pixi run molecule test

cluster:
cluster: ${HOME}/.pixi/bin/pixi
${HOME}/.pixi/bin/pixi run ansible-playbook -i inventories/hosts.dev.yml playbooks/slurm-cluster/slurm.yml
Loading