Skip to content

Commit

Permalink
Merge branch 'bugfix/build_wasm-syntax+update-emscripten' into 'devel'
Browse files Browse the repository at this point in the history
Bugfix/build wasm syntax+update emscripten

See merge request sds-dev/sd-connect/swift-browser-ui!116
  • Loading branch information
blankdots committed Jul 24, 2023
2 parents b01d987 + c73e43f commit b821577
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- (GH #642) Add support for decrypting downloaded files
- Automate building wasm with npm
- use `CSCfi/docker-emscripten-crypt4gh` image `1.2.0`
- Show notification when changing permission in share modal
- Use OIDC as the default Keystone login provider for SSO
- (GH #864) Vault c4ghtransit integration - Uploads object headers to Vault in addition to Object Storage
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile-build-crypt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build wasm encryption
FROM ghcr.io/cscfi/docker-emscripten-crypt4gh:1.1.0 AS WASMCRYPT
FROM ghcr.io/cscfi/docker-emscripten-crypt4gh:1.2.0 AS WASMCRYPT

COPY swift_browser_ui_frontend/wasm/ /src/

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile-build-crypt-devel
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build wasm encryption
FROM ghcr.io/cscfi/docker-emscripten-crypt4gh:1.1.0 AS WASMCRYPT
FROM ghcr.io/cscfi/docker-emscripten-crypt4gh:1.2.0 AS WASMCRYPT

COPY swift_browser_ui_frontend/wasm/ /src/

Expand Down
2 changes: 1 addition & 1 deletion swift_browser_ui_frontend/build_wasm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

[[ ! -x "$(command -v docker)" ]] && echo "Docker is used to build the javascript WebAssembly dependencies, but it's not installed." && exit;
[ ! -x "$(command -v docker)" ] && echo "Docker is used to build the javascript WebAssembly dependencies, but it's not installed." && exit;
if ! docker version > /dev/null 2>&1; then echo "Docker is installed, but it seems like there's an error."; exit 1; fi

SCRIPT="$(realpath $0)"
Expand Down

0 comments on commit b821577

Please sign in to comment.