Skip to content
Merged
Show file tree
Hide file tree
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: 3 additions & 3 deletions ports/aeron/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
"name": "aeron",
"version": "1.49.3",
"port-version": 1,
"port-version": 2,
"description": "Efficient reliable UDP unicast, UDP multicast, and IPC message transport",
"homepage": "https://github.com/aeron-io/aeron",
"license": "Apache-2.0",
"supports": "(x64 & windows & !uwp & !xbox) | ((x64 | arm64) & !windows & !android)",
"supports": "!((x86 | arm64) & windows) & !android & !uwp & !xbox",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rewritten to remove nesting

"dependencies": [
{
"name": "libuuid",
Expand All @@ -24,7 +24,7 @@
"features": {
"archive": {
"description": "Build Aeron Archive API for recording and replaying message streams (requires Java)",
"supports": "(x64 & windows & !uwp & !xbox) | ((x64 | arm64) & !windows & !android)"
"supports": "!((x86 | arm64) & windows) & !android & !uwp & !xbox"
}
}
}
3 changes: 2 additions & 1 deletion ports/dpdk/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "dpdk",
"version": "25.11",
"port-version": 1,
"description": "A set of libraries and drivers for fast packet processing",
"homepage": "https://www.dpdk.org/",
"documentation": "https://doc.dpdk.org/guides/",
"license": "BSD-3-Clause",
"supports": "freebsd | linux | (windows & x64)",
"supports": "freebsd | linux",
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Due to the following errors on Windows

../src/v25.11-3cc4f3a5aa.clean/lib/metrics/rte_metrics_telemetry.c(142): error C2057: expected constant expression
../src/v25.11-3cc4f3a5aa.clean/lib/metrics/rte_metrics_telemetry.c(142): error C2466: cannot allocate an array of constant size 0
../src/v25.11-3cc4f3a5aa.clean/lib/metrics/rte_metrics_telemetry.c(142): error C2133: 'xstats_values': unknown size
../src/v25.11-3cc4f3a5aa.clean/lib/metrics/rte_metrics_telemetry.c(390): error C2057: expected constant expression
../src/v25.11-3cc4f3a5aa.clean/lib/metrics/rte_metrics_telemetry.c(390): error C2466: cannot allocate an array of constant size 0
../src/v25.11-3cc4f3a5aa.clean/lib/metrics/rte_metrics_telemetry.c(390): error C2133: 'stat_names': unknown size

"dependencies": [
{
"name": "libarchive",
Expand Down
16 changes: 0 additions & 16 deletions scripts/ci.baseline.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@
##

# Add new items alphabetically
aeron:arm-neon-android=fail
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The supports clause already skips these.

aeron:arm64-android=fail
aeron:x64-android=fail
apr:arm-neon-android=fail
apr:arm64-android=fail
apr:x64-android=fail
Expand All @@ -52,9 +49,6 @@ arpack-ng:x64-windows-static=fail
arrayfire:x64-linux=fail
atliac-minitest:arm64-uwp=fail
atliac-minitest:x64-uwp=fail
avro-c:arm-neon-android=fail
avro-c:arm64-android=fail
avro-c:x64-android=fail
azure-storage-cpp:arm64-osx=fail
azure-storage-cpp:x64-linux=fail
backward-cpp:arm-neon-android=fail
Expand Down Expand Up @@ -162,9 +156,6 @@ cppcoro:x64-linux=fail
crashpad:x64-linux=fail #Compilation failed due to the lack of Clang++ compiler.
ctbench:arm64-osx=fail
ctp:x64-android=fail
czmq:arm-neon-android=fail
czmq:arm64-android=fail
czmq:x64-android=fail
# Since pipeline cannot automatically install dbghelp dependency, skip this detection
dbghelp:arm64-uwp=skip
dbghelp:arm64-windows-static-md=skip
Expand Down Expand Up @@ -426,8 +417,6 @@ libxt:x64-windows-release=fail # Appears to have broken races
libxt:x64-windows=fail
live555:arm64-uwp=fail
live555:x64-uwp=fail
llfio:arm-neon-android=fail
llfio:arm64-android=fail
llfio:x64-android=fail
llgl:arm-neon-android=fail
llgl:arm64-android=fail
Expand Down Expand Up @@ -595,10 +584,6 @@ qtopcua:x64-android=fail
qtwayland:arm64-osx=skip
quickfix:arm-neon-android=fail
quickfix:arm64-android=fail
# file conflicts with rbdl
rbdl:arm-neon-android=fail
rbdl:arm64-android=fail
rbdl:x64-android=fail
restbed:arm-neon-android=fail
restbed:arm64-android=fail
restbed:arm64-uwp=fail
Expand Down Expand Up @@ -747,7 +732,6 @@ zookeeper:x64-windows-static-md=fail
zookeeper:x64-windows-static=fail
zookeeper:x64-windows=fail
zookeeper:x86-windows=fail
zyre:arm64-windows-static-md=fail

# Ports which needs to pass in CI
cmake:arm64-osx=pass
Expand Down
5 changes: 5 additions & 0 deletions versions/a-/aeron.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "99b549362720ba9d2df482b3e21b9009a4f5f94b",
"version": "1.49.3",
"port-version": 2
},
{
"git-tree": "c7c0110b039da7b02fbf0a42de05428df118d56a",
"version": "1.49.3",
Expand Down
4 changes: 2 additions & 2 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
},
"aeron": {
"baseline": "1.49.3",
"port-version": 1
"port-version": 2
},
"air-ctl": {
"baseline": "1.1.2",
Expand Down Expand Up @@ -2550,7 +2550,7 @@
},
"dpdk": {
"baseline": "25.11",
"port-version": 0
"port-version": 1
},
"dpp": {
"baseline": "10.1.4",
Expand Down
5 changes: 5 additions & 0 deletions versions/d-/dpdk.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "1ae5ab5a636f2c9dc7972c69a9c554bfe16823b5",
"version": "25.11",
"port-version": 1
},
{
"git-tree": "cc65391748bf0876d288a5a18f8ac58798b367d0",
"version": "25.11",
Expand Down