Skip to content

Commit 976fce7

Browse files
committed
ci: update uv version file
1 parent 7d1461b commit 976fce7

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Install UV
3434
run: |
35-
UV_VERSION=$(cat ./requirement-uv.txt | awk -F'==' '{print $2}' | tr -d ' \n')
35+
UV_VERSION=$(cat ./requirement-uv.txt | tr -d ' \n')
3636
curl -LsSf https://astral.sh/uv/${UV_VERSION}/install.sh | sh
3737
3838
- name: Record original PATH
@@ -80,7 +80,7 @@ jobs:
8080

8181
- name: Install UV
8282
run: |
83-
UV_VERSION=$(cat ./requirement-uv.txt | awk -F'==' '{print $2}' | tr -d ' \n')
83+
UV_VERSION=$(cat ./requirement-uv.txt | tr -d ' \n')
8484
curl -LsSf https://astral.sh/uv/${UV_VERSION}/install.sh | sh
8585
8686
- name: Get Current Version

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN \
3434
# This significantly reduces the total build time, as each time we make a build call for a device,
3535
# only device-specific kernel source is being downloaded into the container.
3636
#
37-
RUN curl -LsSf https://astral.sh/uv/$(cat ./requirement-uv.txt | awk -F'==' '{print $2}' | tr -d ' \n')/install.sh | sh && \
37+
RUN curl -LsSf https://astral.sh/uv/$(cat ./requirement-uv.txt | tr -d ' \n')/install.sh | sh && \
3838
. $HOME/.local/bin/env && \
3939
uv sync --frozen --no-install-project && \
4040
uv run ${WDIR}/zkb/utils/bridge.py --shared

0 commit comments

Comments
 (0)