Skip to content

Commit e66200b

Browse files
committed
Fix codespace-upload action that wrongly name devx-containers
e.g. `x86_64-linux.ghc96-jsfalse` rather than `x86_64-linux.ghc96-js` ...
1 parent 25aa06c commit e66200b

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/wait-and-upload.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
default: true
2222
iog:
2323
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' ...
2525
default: false
2626
iog-full:
2727
description: 'with full iog libs: libsodium, libsecp256k1, libblst, postgresql, R, ...'
@@ -120,7 +120,7 @@ jobs:
120120
# Likely, we consider using `-iog` as the default and do not generate other images.
121121
# Then the user choices left would be between native, `-windows` or `-js` target platforms,
122122
# 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 }}
124124
steps:
125125
- name: Checkout repository
126126
uses: actions/checkout@v3
@@ -137,7 +137,7 @@ jobs:
137137
with:
138138
context: .
139139
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') }}
141141
build-args: |
142142
PLATFORM=${{ inputs.platform }}
143143
TARGET_PLATFORM=${{ inputs.target-platform }}

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ ARG TARGET_PLATFORM=""
66
ARG COMPILER_NIX_NAME="ghc96"
77
ARG MINIMAL="false"
88
ARG IOG="true"
9+
ARG IOG_FULL="false"
910

1011
RUN DEBIAN_FRONTEND=noninteractive \
1112
&& apt-get update \
@@ -15,7 +16,7 @@ RUN DEBIAN_FRONTEND=noninteractive \
1516
&& SUFFIX='' \
1617
&& if [ "$MINIMAL" = "true" ]; then SUFFIX="${SUFFIX}-minimal"; fi \
1718
&& if [ "$IOG" = "true" ]; then SUFFIX="${SUFFIX}-iog"; fi \
18-
&& if [ "$IOG_FULL" = "true" ]; then SUFFIX="${SUFFIX}-iog-full"; fi \
19+
&& if [ "$IOG_FULL" = "true" ]; then SUFFIX="${SUFFIX}-full"; fi \
1920
&& ./fetch-docker.sh input-output-hk/devx $PLATFORM.$COMPILER_NIX_NAME$TARGET_PLATFORM${SUFFIX}-env | zstd -d | nix-store --import | tee store-paths.txt
2021

2122
RUN cat <<EOF >> $HOME/.bashrc

0 commit comments

Comments
 (0)