Skip to content

Commit 9fb5c26

Browse files
authored
Merge pull request #692 from pmienk/master
Regenerate artifacts.
2 parents b130b61 + 99294c5 commit 9fb5c26

File tree

5 files changed

+20
-60
lines changed

5 files changed

+20
-60
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ jobs:
496496
packages: ""
497497

498498
- os: ubuntu-22.04
499-
preset: "nix-gnu-release-static-size"
499+
preset: "nix-gnu-release-static"
500500
cxx: "clang++-15"
501501
link: "static"
502502
optimization: "size"
@@ -511,7 +511,7 @@ jobs:
511511
packages: ""
512512

513513
- os: ubuntu-22.04
514-
preset: "nix-gnu-release-shared-size"
514+
preset: "nix-gnu-release-shared"
515515
cxx: "g++-11"
516516
link: "dynamic"
517517
optimization: "size"

.vscode/settings.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
2+
<<<<<<< HEAD
23
"cmake.sourceDirectory": "/home/nixmini/Repository/Source/libbitcoin-node/builds/cmake",
34
"cmake.useCMakePresets": "always"
4-
}
5+
}
6+
=======
7+
"cmake.sourceDirectory": "${workspaceFolder}/builds/cmake",
8+
"cmake.useCMakePresets": "always"
9+
}
10+
>>>>>>> e3e1a43d (Regenerate artifacts.)

builds/cmake/CMakePresets.json

Lines changed: 0 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,6 @@
7474
}
7575
}
7676
},
77-
{
78-
"name": "gnu-optimized-size",
79-
"description": "Factored size optimization settings.",
80-
"hidden": true,
81-
"cacheVariables": {
82-
"CMAKE_C_FLAGS": "$env{CMAKE_C_FLAGS} -Os",
83-
"CMAKE_CXX_FLAGS": "$env{CMAKE_CXX_FLAGS} -Os"
84-
}
85-
},
8677
{
8778
"name": "nix-gnu-debug-static",
8879
"displayName": "*nix/GNU/Debug/Static",
@@ -126,30 +117,6 @@
126117
"gnu-release",
127118
"nix-base"
128119
]
129-
},
130-
{
131-
"name": "nix-gnu-release-static-size",
132-
"displayName": "*nix/GNU/Release/Static/Size",
133-
"description": "Release build with static linking and optimizations for size.",
134-
"hidden": false,
135-
"inherits": [
136-
"gnu-optimized-size",
137-
"static",
138-
"gnu-release",
139-
"nix-base"
140-
]
141-
},
142-
{
143-
"name": "nix-gnu-release-shared-size",
144-
"displayName": "*nix/GNU/Release/Shared/Size",
145-
"description": "Release build with shared linking and optimizations for size.",
146-
"hidden": false,
147-
"inherits": [
148-
"gnu-optimized-size",
149-
"shared",
150-
"gnu-release",
151-
"nix-base"
152-
]
153120
}
154121
],
155122
"buildPresets": [
@@ -185,18 +152,6 @@
185152
"displayName": "*nix/GNU/Release/Shared",
186153
"inherits": [ "nix-target-list" ],
187154
"configurePreset": "nix-gnu-release-shared"
188-
},
189-
{
190-
"name": "nix-gnu-release-static-size",
191-
"displayName": "*nix/GNU/Release/Static/Size",
192-
"inherits": [ "nix-target-list" ],
193-
"configurePreset": "nix-gnu-release-static-size"
194-
},
195-
{
196-
"name": "nix-gnu-release-shared-size",
197-
"displayName": "*nix/GNU/Release/Shared/Size",
198-
"inherits": [ "nix-target-list" ],
199-
"configurePreset": "nix-gnu-release-shared-size"
200155
}
201156
]
202157
}

builds/vscode/node.code-workspace

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
<<<<<<< HEAD
23
"folders": [
34
{
45
"path": "../../../libbitcoin-system"
@@ -14,4 +15,12 @@
1415
}
1516
],
1617
"settings": {}
18+
=======
19+
"folders": [
20+
{
21+
"path": "../../../libbitcoin-node"
22+
}
23+
],
24+
"settings": {}
25+
>>>>>>> e3e1a43d (Regenerate artifacts.)
1726
}

install-cmakepresets.sh

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -354,27 +354,21 @@ handle_custom_options()
354354
($PRESET_ID != "gnu-release") &&
355355
($PRESET_ID != "static") &&
356356
($PRESET_ID != "shared") &&
357-
($PRESET_ID != "gnu-optimized-size") &&
358357
($PRESET_ID != "nix-gnu-debug-static") &&
359358
($PRESET_ID != "nix-gnu-debug-shared") &&
360359
($PRESET_ID != "nix-gnu-release-static") &&
361-
($PRESET_ID != "nix-gnu-release-shared") &&
362-
($PRESET_ID != "nix-gnu-release-static-size") &&
363-
($PRESET_ID != "nix-gnu-release-shared-size")]]; then
360+
($PRESET_ID != "nix-gnu-release-shared")]]; then
364361
display_error "Unsupported preset: $PRESET_ID"
365362
display_error "Supported values are:"
366363
display_error " nix-base"
367364
display_error " gnu-debug"
368365
display_error " gnu-release"
369366
display_error " static"
370367
display_error " shared"
371-
display_error " gnu-optimized-size"
372368
display_error " nix-gnu-debug-static"
373369
display_error " nix-gnu-debug-shared"
374370
display_error " nix-gnu-release-static"
375371
display_error " nix-gnu-release-shared"
376-
display_error " nix-gnu-release-static-size"
377-
display_error " nix-gnu-release-shared-size"
378372
display_error ""
379373
display_help
380374
exit 1
@@ -387,11 +381,7 @@ handle_custom_options()
387381
display_message "REPO_PRESET[libbitcoin-database]=${REPO_PRESET[libbitcoin-database]}"
388382
REPO_PRESET[libbitcoin-network]="$BASE_PRESET_ID"
389383
display_message "REPO_PRESET[libbitcoin-network]=${REPO_PRESET[libbitcoin-network]}"
390-
if [[ $WITH_ICU ]]; then
391-
REPO_PRESET[libbitcoin-system]="$BASE_PRESET_ID-with_icu"
392-
else
393-
REPO_PRESET[libbitcoin-system]="$BASE_PRESET_ID-without_icu"
394-
fi
384+
REPO_PRESET[libbitcoin-system]="$BASE_PRESET_ID"
395385
display_message "REPO_PRESET[libbitcoin-system]=${REPO_PRESET[libbitcoin-system]}"
396386

397387
CUMULATIVE_FILTERED_ARGS=""

0 commit comments

Comments
 (0)