Skip to content

Commit

Permalink
Not so auto update (#1959)
Browse files Browse the repository at this point in the history
The monthly updates failed. This does them manually and fixes the
reasons they failed.
  • Loading branch information
visr authored Dec 6, 2024
1 parent 5b5e99f commit f1c7904
Show file tree
Hide file tree
Showing 11 changed files with 6,949 additions and 5,974 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/core_testmodels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ jobs:
with:
cache-compiled: "true"
cache-registries: "true"
- name: "Manually add Conda.jl folder due to bug in its build step"
if: matrix.os == 'ubuntu-latest'
# https://github.com/JuliaPy/Conda.jl/issues/251
run: |
mkdir -p "/home/runner/.julia/conda/3/x86_64"
- name: "Same but for Windows"
if: matrix.os == 'windows-latest'
run: |
mkdir "C:\Users\runneradmin\.julia\conda\3\x86_64"
- uses: prefix-dev/[email protected]
with:
pixi-version: "latest"
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/core_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,15 @@ jobs:
with:
cache-compiled: "true"
cache-registries: "true"
- name: "Manually add Conda.jl folder due to bug in its build step"
if: matrix.os == 'ubuntu-latest'
# https://github.com/JuliaPy/Conda.jl/issues/251
run: |
mkdir -p "/home/runner/.julia/conda/3/x86_64"
- name: "Same but for Windows"
if: matrix.os == 'windows-latest'
run: |
mkdir "C:\Users\runneradmin\.julia\conda\3\x86_64"
- uses: prefix-dev/[email protected]
with:
pixi-version: "latest"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
with:
cache-compiled: "true"
cache-registries: "true"
- name: "Manually add Conda.jl folder due to bug in its build step"
# https://github.com/JuliaPy/Conda.jl/issues/251
run: |
mkdir -p "/home/runner/.julia/conda/3/x86_64"
- uses: prefix-dev/[email protected]
with:
pixi-version: "latest"
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ repos:
exclude: '.teamcity'
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.1
rev: v0.8.1
hooks:
- id: ruff
types_or: [python, pyi, jupyter]
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format
types_or: [python, pyi, jupyter]
- repo: https://github.com/kynan/nbstripout
rev: 0.7.1
rev: 0.8.1
hooks:
- id: nbstripout
- repo: https://github.com/crate-ci/typos
rev: v1.26.8
rev: v1.28.2
hooks:
- id: typos
4 changes: 2 additions & 2 deletions .teamcity/Templates/Build.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fun generateBuildHeader(platformOs: String): String {
source /usr/share/Modules/init/bash
module load pixi
module load gcc/11.3.0
module load gcc/12.2.0_gcc12.2.0
""".trimIndent() + System.lineSeparator()
}

Expand Down Expand Up @@ -59,4 +59,4 @@ open class Build(platformOs: String) : Template() {
}

object BuildWindows : Build("Windows")
object BuildLinux : Build("Linux")
object BuildLinux : Build("Linux")
Loading

0 comments on commit f1c7904

Please sign in to comment.