Skip to content

Commit fa02651

Browse files
committed
win bug fixes
1 parent 24cfe4f commit fa02651

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/test-scripts.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
jobs:
1515
test-mac:
1616
name: Test mac/run.sh on macOS
17+
if: false
1718
runs-on: macos-latest
1819
timeout-minutes: 15
1920
environment: BrowserStack
@@ -326,12 +327,13 @@ jobs:
326327
name: browserstack-logs-windows
327328
path: |
328329
${{ github.workspace }}/bs-logs
329-
${{ env.USERPROFILE }}\run_test_*.log
330+
C:\Temp\run_test_*.log
330331
retention-days: 30
331332
if-no-files-found: ignore
332333

333334
test-linux:
334335
name: Test mac/run.sh on Linux
336+
if: false
335337
runs-on: ubuntu-latest
336338
timeout-minutes: 15
337339
environment: BrowserStack
@@ -493,7 +495,7 @@ jobs:
493495
echo "Linux Tests: ${{ needs.test-linux.result }}"
494496
echo "Windows Tests: ${{ needs.test-windows.result }}"
495497
496-
if [ "${{ needs.test-mac.result }}" = "failure" ] || [ "${{ needs.test-linux.result }}" = "failure" ] [ "${{ needs.test-windows.result }}" = "failure" ]; then
498+
if [ "${{ needs.test-mac.result }}" = "failure" ] || [ "${{ needs.test-linux.result }}" = "failure" ] || [ "${{ needs.test-windows.result }}" = "failure" ]; then
497499
echo "❌ Some tests failed"
498500
exit 1
499501
fi

0 commit comments

Comments
 (0)