mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 17:25:50 +03:00
6c87e294c4
* Tidy workflows * Update get-version-from-git.sh * Run tests in Actions * Upload coverage to SonarCloud * Run linters in Actions * Run builds in Actions, consolidating with sentry uploader * Update sonar-project.properties * chmod +x * Iterate * Use new env vars * Delete yarn-sub.js * Use re-usable sonarqube action * Add README badges * Match reality
10 lines
511 B
Bash
Executable file
10 lines
511 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Echoes a version based on the git hashes of the element-web, react-sdk & js-sdk checkouts, for the case where
|
|
# these dependencies are git checkouts.
|
|
|
|
# Since the deps are fetched from git, we can rev-parse
|
|
REACT_SHA=$(git -C node_modules/matrix-react-sdk rev-parse --short=12 HEAD)
|
|
JSSDK_SHA=$(git -C node_modules/matrix-js-sdk rev-parse --short=12 HEAD)
|
|
VECTOR_SHA=$(git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop
|
|
echo $VECTOR_SHA-react-$REACT_SHA-js-$JSSDK_SHA
|