summaryrefslogtreecommitdiffstats
path: root/.github/actions
diff options
context:
space:
mode:
authorGangzheng Tong <tonggangzheng@gmail.com>2025-09-17 10:40:05 -0700
committerGitHub <noreply@github.com>2025-09-17 17:40:05 +0000
commit570277137a2baa658ccad78487858205873398da (patch)
tree656d3b79e9ae463edb012c697193401e956269b6 /.github/actions
parent5610d78451570c8866d207b0ce81005caaefb785 (diff)
Use self-hosted runner for Windows release build (#8470)
- Remove hard-coded Win SDK version. - Using self-hosted machine for building release package in Windows. - Remove the steps from release.yml that have been done in common steup. --------- Co-authored-by: slangbot <ellieh+slangbot@nvidia.com> Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com>
Diffstat (limited to '.github/actions')
-rw-r--r--.github/actions/common-setup/action.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/actions/common-setup/action.yml b/.github/actions/common-setup/action.yml
index 8ff2557a1..da24d6baa 100644
--- a/.github/actions/common-setup/action.yml
+++ b/.github/actions/common-setup/action.yml
@@ -27,12 +27,11 @@ runs:
uses: ilammy/msvc-dev-cmd@v1
- name: Install dependencies (Linux only)
+ if: inputs.os == 'linux'
shell: bash
run: |
- if [[ "${{ inputs.os }}" == "linux" ]]; then
- sudo apt-get update
- sudo apt-get install -y libx11-dev
- fi
+ sudo apt-get update
+ sudo apt-get install -y libx11-dev
- name: Setup Node.js (Linux only)
if: inputs.os == 'linux'