Skip to content

Commit 0228c72

Browse files
committed
Wrap extracted values in double quotes
1 parent f04ccc3 commit 0228c72

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/debian.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ jobs:
3131
matrix:
3232
architecture:
3333
- runner: ubuntu-24.04
34-
- runner: ubuntu-24.04-arm
34+
# - runner: ubuntu-24.04-arm
3535
docker:
3636
- image: ghcr.io/xrplf/ci/debian-bookworm:gcc-12
37-
- image: ghcr.io/xrplf/ci/debian-bookworm:gcc-13
38-
- image: ghcr.io/xrplf/ci/debian-bookworm:gcc-14
39-
- image: ghcr.io/xrplf/ci/debian-bookworm:clang-16
40-
- image: ghcr.io/xrplf/ci/debian-bookworm:clang-17
41-
- image: ghcr.io/xrplf/ci/debian-bookworm:clang-18
42-
- image: ghcr.io/xrplf/ci/debian-bookworm:clang-19
43-
- image: ghcr.io/xrplf/ci/debian-bookworm:clang-20
37+
# - image: ghcr.io/xrplf/ci/debian-bookworm:gcc-13
38+
# - image: ghcr.io/xrplf/ci/debian-bookworm:gcc-14
39+
# - image: ghcr.io/xrplf/ci/debian-bookworm:clang-16
40+
# - image: ghcr.io/xrplf/ci/debian-bookworm:clang-17
41+
# - image: ghcr.io/xrplf/ci/debian-bookworm:clang-18
42+
# - image: ghcr.io/xrplf/ci/debian-bookworm:clang-19
43+
# - image: ghcr.io/xrplf/ci/debian-bookworm:clang-20
4444
build:
4545
- type: Debug
46-
- type: Release
46+
# - type: Release
4747
runs-on: ${{ matrix.architecture.runner }}
4848
container: ${{ matrix.docker.image }}
4949
steps:
@@ -79,11 +79,11 @@ jobs:
7979
name=$(jq -r '.name' ${config})
8080
dir=$(jq -r '.dir' ${config})
8181
version=$(jq -r '.version' ${config})
82-
opts=$(jq -r '.options | join(" -o *:") | if length == 0 then "" else "-o *:" + . end' ${config})
82+
opts=$(jq -r '.options | join("\" -o \"*:") | if length == 0 then "" else "-o \"*:" + . + "\"" end' ${config})
8383
# Create the recipe.
8484
echo "Creating recipe '${name}@${version}' with options '${opts}'."
85-
conan create ${name}/${dir} \
86-
--version=${version} \
85+
conan create "${name}/${dir}" \
86+
--version="${version}" \
8787
--build=missing \
8888
--settings:all=build_type=${{ matrix.build.type }} \
8989
--update \

configs/recipes/openssl.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "openssl",
3-
"dir": "1.1.x",
3+
"dir": "1.1.w",
44
"version": "1.1.1w",
55
"options": [
66
"shared=False",

0 commit comments

Comments
 (0)