Skip to content

Commit 9be999e

Browse files
committed
Froze the lockfile in CI
1 parent 4cbc0bb commit 9be999e

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/test-ff-matrix.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
- name: Install Python and Dependencies
125125
working-directory: tests
126126
run: |
127-
uv sync
127+
uv sync --frozen
128128
129129
- uses: ./.github/workflows/actions/quarto-dev
130130

@@ -156,8 +156,8 @@ jobs:
156156
run: |
157157
# Setup IJulia with the jupyter from the Python environment
158158
# https://julialang.github.io/IJulia.jl/stable/manual/installation/
159-
export JUPYTER=$(find $(dirname $(uv run which jupyter))/ -type f -name "jupyter.exe" -o -name "jupyter")
160-
uv run julia --color=yes --project=. -e "import Pkg; Pkg.instantiate(); Pkg.build(\"IJulia\"); Pkg.precompile()"
159+
export JUPYTER=$(find $(dirname $(uv run --frozen which jupyter))/ -type f -name "jupyter.exe" -o -name "jupyter")
160+
uv run --frozen julia --color=yes --project=. -e "import Pkg; Pkg.instantiate(); Pkg.build(\"IJulia\"); Pkg.precompile()"
161161
echo "Julia Jupyter:"
162162
julia --project=. -e "import IJulia;println(IJulia.JUPYTER);println(IJulia.find_jupyter_subcommand(\"notebook\"))"
163163

.github/workflows/test-smokes.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
- name: Install Python and Dependencies
151151
working-directory: tests
152152
run: |
153-
uv sync
153+
uv sync --frozen
154154
155155
- uses: ./.github/workflows/actions/quarto-dev
156156

@@ -180,8 +180,8 @@ jobs:
180180
run: |
181181
# Setup IJulia with the jupyter from the Python environment
182182
# https://julialang.github.io/IJulia.jl/stable/manual/installation/
183-
export JUPYTER=$(find $(dirname $(uv run which jupyter))/ -type f -name "jupyter.exe" -o -name "jupyter")
184-
uv run julia --color=yes --project=. -e "import Pkg; Pkg.instantiate(); Pkg.build(\"IJulia\"); Pkg.precompile()"
183+
export JUPYTER=$(find $(dirname $(uv run --frozen which jupyter))/ -type f -name "jupyter.exe" -o -name "jupyter")
184+
uv run --frozen julia --color=yes --project=. -e "import Pkg; Pkg.instantiate(); Pkg.build(\"IJulia\"); Pkg.precompile()"
185185
echo "Julia Jupyter:"
186186
julia --project=. -e "import IJulia;println(IJulia.JUPYTER);println(IJulia.find_jupyter_subcommand(\"notebook\"))"
187187

0 commit comments

Comments
 (0)