From b0f3736fa28e7c1e2320a021dfc56017e2db0762 Mon Sep 17 00:00:00 2001 From: Jane Xu Date: Wed, 25 Jan 2023 18:59:01 +0000 Subject: [PATCH] [BE][CI] symlink .jenkins to .ci (#92846) Pull Request resolved: https://github.com/pytorch/pytorch/pull/92846 Approved by: https://github.com/malfet, https://github.com/huydhn --- .github/workflows/_win-build.yml | 6 ++++++ .jenkins | 1 + 2 files changed, 7 insertions(+) create mode 120000 .jenkins diff --git a/.github/workflows/_win-build.yml b/.github/workflows/_win-build.yml index 8636d8dbb08..e6aaeec8aa5 100644 --- a/.github/workflows/_win-build.yml +++ b/.github/workflows/_win-build.yml @@ -60,6 +60,12 @@ jobs: call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 call "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 + # Duplicated in win-test because this MUST go before a checkout + - name: Enable git symlinks on Windows + shell: bash + run: | + git config --global core.symlinks true + # [see note: pytorch repo ref] - name: Checkout PyTorch uses: pytorch/pytorch/.github/actions/checkout-pytorch@master diff --git a/.jenkins b/.jenkins new file mode 120000 index 00000000000..ecb1fd33681 --- /dev/null +++ b/.jenkins @@ -0,0 +1 @@ +.ci \ No newline at end of file