Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion ci/fetch-assets.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ $ErrorActionPreference = "Stop"

$ipIntelligenceData = "$PSSCriptRoot/../ip-intelligence.engine.on-premise/src/main/cxx/ip-intelligence-cxx/ip-intelligence-data"

./steps/fetch-assets.ps1 -IpIntelligenceUrl $IpIntelligenceUrl -Assets '51Degrees-EnterpriseIpiV41.ipi', '51Degrees-LiteIpiV41.ipi'
# The Lite hash file is not used by this repo, but the integration tests clone
# ip-intelligence-java-examples and run its fetch-assets, which needs it. Listing
# it here puts it in the prefetched asset cache, so it is downloaded once per
# nightly run instead of once per matrix job.
./steps/fetch-assets.ps1 -IpIntelligenceUrl $IpIntelligenceUrl -Assets '51Degrees-EnterpriseIpiV41.ipi', '51Degrees-LiteIpiV41.ipi', '51Degrees-LiteV4.1.hash'
New-Item -ItemType SymbolicLink -Force -Target "$PWD/assets/51Degrees-EnterpriseIpiV41.ipi" -Path "$ipIntelligenceData/51Degrees-EnterpriseIpiV41.ipi"
# The asset is fetched under the blob name, but FileUtils and the data repo
# scripts use the unpacked name 51Degrees-LiteV41.ipi, so link it as that.
Expand Down
Loading