We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3a2e11 commit 3c549b5Copy full SHA for 3c549b5
.ci/build-platform.yml
@@ -19,7 +19,9 @@ jobs:
19
- template: utils/restore-build-cache.yml
20
- script: "esy"
21
displayName: "esy install & build"
22
- - bash: '$(esy x which RunTests.exe)'
+ - bash: |
23
+ cp $(esy x which RunTests.exe) RunTests.exe
24
+ ./RunTests.exe
25
displayName: "Run some tests"
26
- template: utils/publish-build-cache.yml
27
- bash: mkdir -p rls-release
runtests.sh
@@ -2,4 +2,5 @@
2
set -ex
3
esy
4
# We need to run the binary outside of the esy env.
5
-sh -c '$(esy x which RunTests.exe)'
+cp $(esy x which RunTests.exe) RunTests.exe
6
+./RunTests.exe
0 commit comments