Skip to content

Commit 299c1c2

Browse files
committed
removing the dart --version call to see if this runs
1 parent 96c3394 commit 299c1c2

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

.github/workflows/presubmit.yaml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -86,21 +86,20 @@ jobs:
8686
sdk: ${{ matrix.dart-version }}
8787

8888
- name: (MACOS/LINUX) Run Dart Analysis Server Tests with Dart SDK ${{ matrix.dart-version }}
89-
if: runner.os == 'Linux' || runner.os == 'macOS' # Run even if one SDK version fails
89+
if: always() #runner.os == 'Linux' || runner.os == 'macOS' # Run even if one SDK version fails
9090
# Pass the Dart SDK path with DART_HOME
9191
run: |
92-
${DART_HOME}/bin/dart --version
9392
./gradlew :test --tests "com.jetbrains.dart.analysisServer.*"
9493
working-directory: third_party
9594

96-
- name: (WINDOWS) Run Dart Analysis Server Tests with Dart SDK ${{ matrix.dart-version }}
97-
if: runner.os == 'Windows' # Run even if one SDK version fails
98-
# Pass the Dart SDK path with DART_HOME
99-
run: |
100-
"${DART_HOME}/bin/dart --version"
101-
pwd
102-
./gradlew :test --tests com.jetbrains.dart.analysisServer.*
103-
working-directory: third_party
95+
#- name: (WINDOWS) Run Dart Analysis Server Tests with Dart SDK ${{ matrix.dart-version }}
96+
# if: runner.os == 'Windows' # Run even if one SDK version fails
97+
# # Pass the Dart SDK path with DART_HOME
98+
# run: |
99+
# ${DART_HOME}/bin/dart --version
100+
# pwd
101+
# ./gradlew :test --tests com.jetbrains.dart.analysisServer.*
102+
# working-directory: third_party
104103

105104

106105

0 commit comments

Comments
 (0)