21
21
default : true
22
22
iog :
23
23
description : ' with iog libs: libsodium, libsecp256k1, libblst, ...'
24
- type : boolean
24
+ type : boolean # FIXME: this should rather be a 'string' that could be set to 'full' ...
25
25
default : false
26
26
iog-full :
27
27
description : ' with full iog libs: libsodium, libsecp256k1, libblst, postgresql, R, ...'
@@ -120,7 +120,7 @@ jobs:
120
120
# Likely, we consider using `-iog` as the default and do not generate other images.
121
121
# Then the user choices left would be between native, `-windows` or `-js` target platforms,
122
122
# and the GHC version (currently `ghc810` and `ghc96`).
123
- if : ${{ contains(fromJSON('["x86_64-linux", "aarch64-linux"]'), inputs.platform) && contains(fromJson('["","-windows","-js"]'), inputs.target-platform) && contains(fromJson('["ghc810","ghc96"]'), inputs.compiler-nix-name) && !inputs.minimal }}
123
+ if : ${{ contains(fromJSON('["x86_64-linux", "aarch64-linux"]'), inputs.platform) && contains(fromJson('["","-windows","-js"]'), inputs.target-platform) && contains(fromJson('["ghc810","ghc96"]'), inputs.compiler-nix-name) && !inputs.minimal && inputs.iog && !inputs.iog-full }}
124
124
steps :
125
125
- name : Checkout repository
126
126
uses : actions/checkout@v3
@@ -137,7 +137,7 @@ jobs:
137
137
with :
138
138
context : .
139
139
push : true
140
- tags : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ inputs.platform }}.${{ inputs.compiler-nix-name }}${{ inputs.target-platform }}${{ inputs.iog-full || inputs.iog }}
140
+ tags : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ inputs.platform }}.${{ inputs.compiler-nix-name }}${{ inputs.target-platform }}${{ ( inputs.iog-full && '-iog-full') || ( inputs.iog && '-iog') }}
141
141
build-args : |
142
142
PLATFORM=${{ inputs.platform }}
143
143
TARGET_PLATFORM=${{ inputs.target-platform }}
0 commit comments