Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mduncans committed Sep 9, 2024
1 parent e8eeca3 commit 458ca13
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/RunChecks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
mv ./squeue /usr/local/bin/squeue
chmod 755 /usr/local/bin/squeue
gh release download "sbatch/v0.2.0" -R a2-ai-tech-training/slurm-mocks -p "*Linux_x86_64.tar.gz" -D /usr/local/bin/"
gh release download "sbatch/v0.2.0" -R a2-ai-tech-training/slurm-mocks -p "*Linux_x86_64.tar.gz" -D /usr/local/bin/
tar -xvf /usr/local/bin/sbatch_Linux_x86_64.tar.gz
mv ./sbatch /usr/local/bin/sbatch
chmod 755 /usr/local/bin/sbatch
Expand All @@ -66,9 +66,10 @@ jobs:
- name: Check mocked binaries work in different step
run: |
Rscript -e 'if (!requireNamespace("processx", quietly = TRUE)) install.packages("processx"); processx::run("sinfo", args = c("--format", "%P,%c,%m"),)'
Rscript -e 'Sys.which("sinfo")'
Rscript -e 'processx::run("sacct", args = "--json")'
Rscript -e 'Sys.which("sacct")'
Rscript -e 'processx::run("squeue", args = "--version")'
Rscript -e 'processx::run("squeue", args = "--json")'
Rscript -e 'processx::run("sbatch", args = "path_to_file")'
- uses: r-lib/actions/setup-r-dependencies@v2
with:
Expand Down

0 comments on commit 458ca13

Please sign in to comment.