Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not so auto update #1959

Merged
merged 21 commits into from
Dec 6, 2024
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: 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/setup-pixi@v0.8.1
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/setup-pixi@v0.8.1
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/setup-pixi@v0.8.1
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
Loading