From 7bc112916e730da9a8d526ca21c61b0fba7366f7 Mon Sep 17 00:00:00 2001 From: Roman Date: Thu, 23 Nov 2023 19:46:30 +0800 Subject: [PATCH] test: add .exe to symlink for windows --- .github/actions/install_nim/action.yml | 3 ++- .github/workflows/ci.yml | 2 -- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/actions/install_nim/action.yml b/.github/actions/install_nim/action.yml index 7d3e290bb..12a2a74f6 100644 --- a/.github/actions/install_nim/action.yml +++ b/.github/actions/install_nim/action.yml @@ -123,4 +123,5 @@ runs: bash build_nim.sh nim csources ${NIMBLE_DIR} NimBinaries nimble install nimble -y rm -rf nim/bin/nimble - ln -s $NIMBLE_DIR/bin/nimble nim/bin/nimble + ln -s $NIMBLE_DIR/bin/nimble.exe nim/bin/nimble.exe + diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e22ab213..d203c1f0a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,8 +80,6 @@ jobs: - name: Install deps run: | - ls -la ${HOME} - pwd nimble install -y --depsOnly - name: Run tests