aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.travis.yml63
-rw-r--r--tools/qt-installer-windows.qs92
2 files changed, 152 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 11abf4510b..ccbf00b4d9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -54,6 +54,30 @@ matrix:
- CXX=clang++
- CC=clang
- PCAP=OFF
+ - name: Windows (VS2017 x64)
+ # Set a supported language, otherwise the Windows worker will not start.
+ language: shell
+ os: windows
+ env:
+ - PLATFORM: x64
+ - WIRESHARK_BASE_DIR: C:/wireshark-libs
+ - QT5_BASE_DIR: C:/Qt/5.12.0/msvc2017_64
+ cache:
+ directories:
+ - $WIRESHARK_BASE_DIR
+ - C:/Qt
+ - name: Windows (VS2017 Win32)
+ # Set a supported language, otherwise the Windows worker will not start.
+ language: shell
+ os: windows
+ env:
+ - PLATFORM: Win32
+ - WIRESHARK_BASE_DIR: C:/wireshark-libs
+ - QT5_BASE_DIR: C:/Qt/5.12.0/msvc2017
+ cache:
+ directories:
+ - $WIRESHARK_BASE_DIR
+ - C:/Qt
before_install:
- echo $TRAVIS_OS_NAME
# macos
@@ -62,15 +86,48 @@ before_install:
# linux
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo ./tools/debian-setup.sh --install-optional --install-test-deps -q; fi
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get install -y python3-pip; fi
+ # windows
+ - if [ "$TRAVIS_OS_NAME" == "windows" ]; then cinst -y --no-progress python3 winflexbison strawberryperl; fi
+ - |
+ if [ "$TRAVIS_OS_NAME" == "windows" ]; then
+ # Ensure Python and the Scripts folder is available in PATH.
+ # refreshenv does not seem to work in bash, so reload it manually.
+ # Entries in the Machine PATH might contain trailing slashes, drop those.
+ # Apply Process paths before Machine to ensure /bin appears before others (otherwise casher will break and stall).
+ export PATH="$(powershell -Command '("Process", "Machine" | % {
+ [Environment]::GetEnvironmentVariable("PATH", $_) -Split ";" -Replace "\\$", ""
+ } | Select -Unique | % { cygpath $_ }) -Join ":"')"
+ echo "PATH=$PATH"
+ # Workaround broken casher implementation that extracts absolute paths to the current working directory
+ # See https://github.com/travis-ci/casher/pull/38
+ for path in wireshark-libs Qt; do if [ -d "$path" ]; then echo "Restoring C:/$path"; mv "$path/"* "C:/$path"; fi; done
+ # Update checksums to avoid invalidating the cache (saves 2-3mins).
+ if [ -d Qt ]; then md5deep64 -o f -r "C:/wireshark-libs" "C:/Qt" | sort > ~/.casher/md5sums_before; fi
+ # Workaround to avoid using perl from git-bash $PATH which lacks modules such as Pod::Usage
+ export CMAKE_PROGRAM_PATH=C:/Strawberry/perl/bin
+ fi
+ - |
+ if [ "$TRAVIS_OS_NAME" == "windows" ] && [ ! -e "$QT5_BASE_DIR/bin/moc.exe" ]; then
+ curl -vLo ~/qt-unified-windows-x86-online.exe http://download.qt.io/official_releases/online_installers/qt-unified-windows-x86-online.exe
+ if ! ~/qt-unified-windows-x86-online.exe --verbose --script tools/qt-installer-windows.qs > ~/qt-installer-output.txt; then
+ cat ~/qt-installer-output.txt; exit 1
+ fi
+ du -sm "$QT5_BASE_DIR"
+ fi
# all platforms
- pip3 install pytest pytest-xdist
before_script:
- mkdir build
- cd build
- - cmake -GNinja -DENABLE_PCAP=${PCAP} ..
+ - if [ "$TRAVIS_OS_NAME" != "windows" ]; then cmake -GNinja -DENABLE_PCAP=${PCAP} ..; fi
+ - if [ "$TRAVIS_OS_NAME" == "windows" ]; then cmake -A $PLATFORM ..; fi
script:
- - ninja
- - ninja test-programs
+ # Enable parallelism for msbuild too (since CMake 3.12; ninja does not need it)
+ - export CMAKE_BUILD_PARALLEL_LEVEL=0
+ # Invoke ninja (Linux/macOS, --config is ignored) or msbuild (Windows)
+ - cmake --build . --config RelWithDebInfo
+ - cmake --build . --config RelWithDebInfo --target test-programs
- pytest -v
after_script:
- if [ -f run/tshark ]; then run/tshark --version; fi
+ - if [ -f run/RelWithDebInfo/tshark.exe ]; then run/RelWithDebInfo/tshark.exe --version; fi
diff --git a/tools/qt-installer-windows.qs b/tools/qt-installer-windows.qs
new file mode 100644
index 0000000000..da9c696a95
--- /dev/null
+++ b/tools/qt-installer-windows.qs
@@ -0,0 +1,92 @@
+/*
+ * Qt Installer script for a non-interactive installation of Qt5 on Windows.
+ * Installs the 64-bit package if environment variable PLATFORM="x64".
+ */
+
+// jshint strict:false
+/* globals QInstaller, QMessageBox, buttons, gui, installer, console */
+
+// Run with:
+// .\qt-unified-windows-x86-3.0.4-online.exe --verbose --script tools\qt-installer-windows.qs
+
+// Look for Name elements in
+// https://download.qt.io/online/qtsdkrepository/windows_x86/desktop/qt5_5120/Updates.xml
+// Unfortunately it is not possible to disable deps like qt.tools.qtcreator
+var INSTALL_COMPONENTS = [
+ installer.environmentVariable("PLATFORM") == "x64" ?
+ "qt.qt5.5120.win64_msvc2017_64" :
+ "qt.qt5.5120.win32_msvc2017",
+];
+
+function Controller() {
+ // Continue on installing to an existing (possibly empty) directory.
+ installer.setMessageBoxAutomaticAnswer("OverwriteTargetDirectory", QMessageBox.Yes);
+ // Continue at "SHOW FINISHED PAGE"
+ installer.installationFinished.connect(function() {
+ console.log("installationFinished");
+ gui.clickButton(buttons.NextButton);
+ });
+}
+
+Controller.prototype.WelcomePageCallback = function() {
+ console.log("Step: " + gui.currentPageWidget());
+ // At least for 3.0.4 immediately clicking Next fails, so wait a bit.
+ // https://github.com/benlau/qtci/commit/85cb986b66af4807a928c70e13d82d00dc26ebf0
+ gui.clickButton(buttons.NextButton, 1000);
+};
+
+Controller.prototype.CredentialsPageCallback = function() {
+ console.log("Step: " + gui.currentPageWidget());
+ gui.clickButton(buttons.NextButton);
+};
+
+Controller.prototype.IntroductionPageCallback = function() {
+ console.log("Step: " + gui.currentPageWidget());
+ gui.clickButton(buttons.NextButton);
+};
+
+Controller.prototype.TargetDirectoryPageCallback = function() {
+ console.log("Step: " + gui.currentPageWidget());
+ // Keep default at "C:\Qt".
+ //gui.currentPageWidget().TargetDirectoryLineEdit.setText("E:\\Qt");
+ gui.clickButton(buttons.NextButton);
+};
+
+Controller.prototype.ComponentSelectionPageCallback = function() {
+ console.log("Step: " + gui.currentPageWidget());
+ var page = gui.currentPageWidget();
+ page.deselectAll();
+ for (var i = 0; i < INSTALL_COMPONENTS.length; i++) {
+ page.selectComponent(INSTALL_COMPONENTS[i]);
+ }
+ gui.clickButton(buttons.NextButton);
+};
+
+Controller.prototype.LicenseAgreementPageCallback = function() {
+ console.log("Step: " + gui.currentPageWidget());
+ gui.currentPageWidget().AcceptLicenseRadioButton.setChecked(true);
+ gui.clickButton(buttons.NextButton);
+};
+
+Controller.prototype.StartMenuDirectoryPageCallback = function() {
+ console.log("Step: " + gui.currentPageWidget());
+ gui.clickButton(buttons.NextButton);
+};
+
+Controller.prototype.ReadyForInstallationPageCallback = function() {
+ console.log("Step: " + gui.currentPageWidget());
+ gui.clickButton(buttons.NextButton);
+};
+
+Controller.prototype.FinishedPageCallback = function() {
+ console.log("Step: " + gui.currentPageWidget());
+ // TODO somehow the installer crashes after this step.
+ // https://stackoverflow.com/questions/25105269/silent-install-qt-run-installer-on-ubuntu-server
+ var checkBoxForm = gui.currentPageWidget().LaunchQtCreatorCheckBoxForm;
+ if (checkBoxForm && checkBoxForm.launchQtCreatorCheckBox) {
+ checkBoxForm.launchQtCreatorCheckBox.checked = false;
+ }
+ gui.clickButton(buttons.FinishButton);
+};
+
+// vim: set ft=javascript: