Skip to content

Commit 09c3e3a

Browse files
authored
Enable apt proxy caching and Windows proxy cache (#1552)
* Enable apt proxy caching in workflows * Enable proxy cache on Windows
1 parent 2cb0d68 commit 09c3e3a

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/build-wheel.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
1+
# SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

@@ -60,8 +60,10 @@ jobs:
6060
- name: Setup proxy cache
6161
uses: nv-gha-runners/setup-proxy-cache@main
6262
continue-on-error: true
63-
# Skip the cache on Windows nodes outside of our org.
63+
# Skip cache on GitHub-hosted Windows runners.
6464
if: ${{ inputs.host-platform != 'win-64' }}
65+
with:
66+
enable-apt: true
6567

6668
- name: Set up Python
6769
id: setup-python1

.github/workflows/test-wheel-windows.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
1+
# SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

@@ -74,6 +74,8 @@ jobs:
7474
- name: Setup proxy cache
7575
uses: nv-gha-runners/setup-proxy-cache@main
7676
continue-on-error: true
77+
with:
78+
enable-apt: true
7779

7880
- name: Update driver
7981
env:

0 commit comments

Comments
 (0)