From 9b87881f0e002429cf0b1353bc165783bea0870e Mon Sep 17 00:00:00 2001 From: nhmall Date: Fri, 5 Jan 2024 06:59:19 -0500 Subject: [PATCH] update some builds in CI - attempt build using ncurses6 - attempt build using qt6 --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7d6611c47..5b9445f1f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -174,8 +174,8 @@ steps: - bash: | sudo apt-get -qq -y update - sudo apt-get -qq -y install libncurses5-dev - sudo apt-get -qq -y install libx11-dev libxaw7-dev xfonts-utils qtbase5-dev qtmultimedia5-dev qtbase5-dev-tools + sudo apt-get -qq -y install libncurses-dev + sudo apt-get -qq -y install libx11-dev libxaw7-dev xfonts-utils qt6-base-dev qt6-multimedia-dev qt6-base-dev-tools condition: eq( variables['Agent.OS'], 'Linux' ) workingDirectory: $(Agent.BuildDirectory)/$(netHackPath) displayName: 'Getting linux build dependencies' @@ -185,7 +185,7 @@ steps: sh setup.sh hints/linux.370 cd ../.. make fetch-lua - make WANT_WIN_ALL=1 QT_SELECT=5 MOC=moc all + make WANT_WIN_ALL=1 QT_SELECT=6 MOC=moc all condition: and(eq( variables['Agent.OS'], 'Linux' ), eq( variables.buildTarget, 'all')) workingDirectory: $(Agent.BuildDirectory)/$(netHackPath) displayName: 'Building linux full build'