[Fix] Connect to Data Source window does not scale properly (Ubuntu) #240
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: Windows builds | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [master] | |
paths-ignore: | |
- '**/README.md' | |
pull_request: | |
branches: [master] | |
paths-ignore: | |
- '**/README.md' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
windows_build: | |
# The type of runner that the job will run on | |
runs-on: windows-2019 | |
if: ${{ !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') }} | |
strategy: | |
matrix: | |
include: | |
- VS_VERSION: Visual Studio 16 | |
VS_VER: 2019 | |
MSVC_VER: 1920 | |
platform: x64 | |
- VS_VERSION: Visual Studio 16 | |
VS_VER: 2019 | |
MSVC_VER: 1920 | |
platform: x86 | |
env: | |
VS_VERSION: ${{ matrix.VS_VERSION }} | |
VS_VER: ${{ matrix.VS_VER }} | |
MSVC_VER: ${{ matrix.MSVC_VER }} | |
platform: ${{ matrix.platform }} | |
APPVEYOR: true # to skip some tests | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true # see https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/ | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
# Set environment | |
- name: Set environment | |
shell: pwsh | |
run: | | |
if($env:platform -eq "x86") | |
{ | |
$env:ARCHITECTURE="x86" | |
$env:WIN64_ARG="" | |
$env:CMAKE_ARCHITECTURE="Win32" | |
} | |
else | |
{ | |
$env:ARCHITECTURE="amd64" | |
$env:WIN64_ARG="WIN64=YES" | |
$env:CMAKE_ARCHITECTURE="x64" | |
} | |
echo "::set-env name=PATH::$env:PATH" | |
echo "::set-env name=ARCHITECTURE::$env:ARCHITECTURE" | |
echo "::set-env name=WIN64_ARG::$env:WIN64_ARG" | |
# Set compiler environment | |
- name: Set compiler environment | |
shell: cmd | |
run: | | |
if "%VS_VER%" == "2019" CALL "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\VsDevCmd.bat" -arch=%ARCHITECTURE% | |
echo ::set-env name=PATH::%PATH% | |
echo ::set-env name=INCLUDE::%INCLUDE% | |
echo ::set-env name=LIB::%LIB% | |
echo ::set-env name=LIBPATH::%LIBPATH% | |
- uses: actions/cache@v3 | |
id: cache | |
with: | |
path: | | |
BuildTools/windows/libraries | |
BuildTools/windows/temp | |
key: ${{ runner.os }}-${{ matrix.platform }}-deps-cache-${{ hashFiles('BuildTools/windows/deps.md') }} | |
# Install innosetup | |
- name: Install innosetup | |
uses: crazy-max/ghaction-chocolatey@v3 | |
with: | |
args: install innosetup --no-progress | |
# Create Deps | |
- if: steps.cache.outputs.cache-hit != 'true' | |
name: Create Dependencies | |
shell: pwsh | |
run: | | |
$ErrorActionPreference = 'continue' | |
function exec | |
{ | |
param ( [ScriptBlock] $ScriptBlock ) | |
& $ScriptBlock 2>&1 | ForEach-Object -Process { "$_" } | |
if ($LastExitCode -ne 0) { exit $LastExitCode } | |
} | |
echo "ARCH_FLAGS = $env:ARCH_FLAGS" | |
Import-PackageProvider NuGet -Force | |
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted | |
# install pscx powershell and vSSetup | |
Install-Module Pscx -AllowClobber | |
Install-Module VSSetup -Scope CurrentUser | |
if($env:VS_VER -eq "2019") | |
{ | |
} | |
else | |
{ | |
Import-VisualStudioVars -VisualStudioVersion $env:VS_VER -Architecture $env:ARCHITECTURE | |
} | |
# | |
# prepare | |
# | |
$env:GDA_PATH="$env:GITHUB_WORKSPACE\BuildTools\windows" | |
cd $env:GDA_PATH | |
mkdir temp | |
# | |
# GDAL # gisinternals SDK version still to 2016 | |
# | |
if($env:platform -eq "x86") | |
{ | |
$env:GDAL_SDK_VER="release-1911" | |
} | |
else | |
{ | |
$env:GDAL_SDK_VER="release-1911-x64" | |
} | |
cd temp | |
Invoke-WebRequest "https://github.com/GeoDaCenter/software/releases/download/v2000/$env:GDAL_SDK_VER-dev.zip" -OutFile "$env:GDAL_SDK_VER.zip" | |
cd .. | |
7z x .\temp\$env:GDAL_SDK_VER.zip | |
dir | |
Rename-Item $env:GDAL_SDK_VER libraries | |
cd temp | |
# | |
# wxWidgets 3.1.4 | |
# | |
if(-Not (Test-Path -Path wxWidgets.zip)) { Invoke-WebRequest "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.4/wxWidgets-3.1.4.zip" -OutFile "wxWidgets.zip" } | |
7z x wxWidgets.zip -owxWidgets | |
cd wxWidgets | |
xcopy /E /Y $env:GDA_PATH\dep\wxWidgets . | |
cd build\msw | |
if($env:platform -eq "x86") | |
{ | |
nmake -f makefile.vc UNICODE=1 SHARED=1 RUNTIME_LIBS=dynamic BUILD=release MONOLITHIC=1 USE_OPENGL=1 USE_POSTSCRIPT=1 | |
} | |
else | |
{ | |
nmake -f makefile.vc UNICODE=1 SHARED=1 RUNTIME_LIBS=dynamic BUILD=release MONOLITHIC=1 USE_OPENGL=1 USE_POSTSCRIPT=1 TARGET_CPU=AMD64 | |
} | |
cd $env:GDA_PATH\temp | |
# | |
# Boost 1.75 | |
# | |
Invoke-WebRequest "https://github.com/lixun910/pygeoda_boost/archive/refs/tags/v1.18.zip" -OutFile "boost.zip" | |
7z x boost.zip | |
Rename-Item pygeoda_boost-1.18 boost | |
# | |
# JSON Spirit v4.08 | |
# | |
if(-Not (Test-Path -Path json_spirit_v4.08.zip )) { Invoke-WebRequest "https://github.com/GeoDaCenter/software/releases/download/v2000/json_spirit_v4.08.zip" -OutFile "json_spirit_v4.08.zip" } | |
if(-Not (Test-Path -Path json_spirit_v4.08)) { 7z x json_spirit_v4.08.zip } | |
cd json_spirit_v4.08 | |
xcopy /E /Y $env:GDA_PATH\dep\json_spirit . | |
if($env:platform -eq "x86") | |
{ | |
msbuild.exe json_vs2019.sln /property:Configuration="Release" /p:Platform="Win32" | |
} | |
else | |
{ | |
msbuild.exe json_vs2019.sln /property:Configuration="Release" /p:Platform="x64" | |
} | |
cd .. | |
# | |
# CLAPACK 3.1.1 | |
# | |
Invoke-WebRequest "https://github.com/GeoDaCenter/software/releases/download/v2000/CLAPACK-3.1.1-VisualStudio.zip" -OutFile "CLAPACK-3.1.1-VisualStudio.zip" | |
7z x CLAPACK-3.1.1-VisualStudio.zip | |
cd CLAPACK-3.1.1-VisualStudio | |
xcopy /E /Y $env:GDA_PATH\dep\CLAPACK-3.1.1-VisualStudio . | |
if($env:platform -eq "x86") | |
{ | |
msbuild.exe clapack_vs2019.sln /t:libf2c_vs2019 /property:Configuration="ReleaseDLL" /p:Platform="Win32" | |
msbuild.exe clapack_vs2019.sln /t:BLAS\blas_vs2019 /property:Configuration="ReleaseDLL" /p:Platform="Win32" | |
msbuild.exe clapack_vs2019.sln /t:clapack_vs2019 /property:Configuration="ReleaseDLL" /p:Platform="Win32" | |
} | |
else | |
{ | |
msbuild.exe clapack_vs2019.sln /t:libf2c_vs2019 /property:Configuration="ReleaseDLL" /p:Platform="x64" | |
msbuild.exe clapack_vs2019.sln /t:BLAS\blas_vs2019 /property:Configuration="ReleaseDLL" /p:Platform="x64" | |
msbuild.exe clapack_vs2019.sln /t:clapack_vs2019 /property:Configuration="ReleaseDLL" /p:Platform="x64" | |
} | |
cd .. | |
# | |
# Eigen3 | |
# | |
Invoke-WebRequest "https://github.com/GeoDaCenter/software/releases/download/v2000/eigen3.zip" -OutFile "eigen3.zip" | |
7z x eigen3.zip | |
# | |
# Spectra v0.8.0 | |
# | |
Invoke-WebRequest "https://github.com/yixuan/spectra/archive/refs/tags/v0.8.0.zip" -OutFile "spectra.zip" | |
7z x spectra.zip | |
Rename-Item spectra-0.8.0 spectra | |
# | |
# OpenCL | |
# | |
Invoke-WebRequest "https://github.com/GeoDaCenter/software/releases/download/v2000/OpenCL.zip" -OutFile "OpenCL.zip" | |
7z x OpenCL.zip | |
dir | |
cd .. | |
# Build GeoDa | |
- name: Build GeoDa | |
shell: pwsh | |
run: | | |
function exec | |
{ | |
param ( [ScriptBlock] $ScriptBlock ) | |
& $ScriptBlock 2>&1 | ForEach-Object -Process { "$_" } | |
if ($LastExitCode -ne 0) { exit $LastExitCode } | |
} | |
echo "ARCH_FLAGS = $env:ARCH_FLAGS" | |
Import-PackageProvider NuGet -Force | |
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted | |
# install pscx powershell and vSSetup | |
Install-Module Pscx -AllowClobber | |
Install-Module VSSetup -Scope CurrentUser | |
if($env:VS_VER -eq "2019") | |
{ | |
} | |
else | |
{ | |
Import-VisualStudioVars -VisualStudioVersion $env:VS_VER -Architecture $env:ARCHITECTURE | |
} | |
$ErrorActionPreference = 'continue' | |
$env:GDA_PATH="$env:GITHUB_WORKSPACE\BuildTools\windows" | |
cd $env:GDA_PATH | |
if($env:platform -eq "x86") | |
{ | |
msbuild.exe GeoDa.vs2019.sln /t:GeoDa /property:Configuration="Release" /m /p:Platform="Win32" | |
} | |
else | |
{ | |
msbuild.exe GeoDa.vs2019.sln /t:GeoDa /property:Configuration="Release" /m /p:Platform="x64" | |
} | |
if($env:platform -eq "x86") | |
{ | |
ISCC.exe /q installer\32bit\GeoDa.iss | |
ISCC.exe /q installer\32bit\GeoDa-win7+.iss | |
} | |
else | |
{ | |
ISCC.exe /q installer\64bit\GeoDa.iss | |
ISCC.exe /q installer\64bit\GeoDa-win7+.iss | |
} | |
dir | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: GeoDa-Windows-${{ env.platform }}-installer | |
path: ${{ github.workspace }}\BuildTools\windows\GeoDa_1.22_${{ env.platform }}_Setup.exe | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: GeoDa-Windows7+-${{ env.platform }}-installer | |
path: ${{ github.workspace }}\BuildTools\windows\GeoDa_1.22_win7+${{ env.platform }}_Setup.exe |