Skip to content

Commit 3c549b5

Browse files
committed
maybe fix timeout
1 parent a3a2e11 commit 3c549b5

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.ci/build-platform.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
- template: utils/restore-build-cache.yml
2020
- script: "esy"
2121
displayName: "esy install & build"
22-
- bash: '$(esy x which RunTests.exe)'
22+
- bash: |
23+
cp $(esy x which RunTests.exe) RunTests.exe
24+
./RunTests.exe
2325
displayName: "Run some tests"
2426
- template: utils/publish-build-cache.yml
2527
- bash: mkdir -p rls-release

runtests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
set -ex
33
esy
44
# We need to run the binary outside of the esy env.
5-
sh -c '$(esy x which RunTests.exe)'
5+
cp $(esy x which RunTests.exe) RunTests.exe
6+
./RunTests.exe

0 commit comments

Comments
 (0)