You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build-linux.yml
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -215,7 +215,11 @@ jobs:
215
215
run: |
216
216
set -euxo pipefail
217
217
TEST_START_UTC="$(date -u '+%Y-%m-%d %H:%M:%S')"
218
-
sg lantern -c "env PATH=$PATH HOME=$HOME xvfb-run -a flutter test integration_test/vpn/linux_connect_smoke_test.dart -d linux --dart-define=DISABLE_SYSTEM_TRAY=true --dart-define=ENABLE_IP_CHECK=true"
218
+
ENABLE_IP_CHECK=false
219
+
if [[ "${TARGET_ARCH}" == "amd64" ]]; then
220
+
ENABLE_IP_CHECK=true
221
+
fi
222
+
sg lantern -c "env PATH=$PATH HOME=$HOME xvfb-run -a flutter test integration_test/vpn/linux_connect_smoke_test.dart -d linux --dart-define=DISABLE_SYSTEM_TRAY=true --dart-define=ENABLE_IP_CHECK=${ENABLE_IP_CHECK}"
0 commit comments