drop scripts/copy-translations.sh as useless
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
54b3507d1a
commit
a96b35996f
3
Makefile
3
Makefile
|
@ -165,20 +165,17 @@ release-ios: export BUILD_ENV ?= prod
|
|||
release-ios: watchman-clean ##@build build release for iOS release
|
||||
@git clean -dxf -f target/ios && \
|
||||
$(MAKE) jsbundle-ios && \
|
||||
scripts/copy-translations.sh && \
|
||||
xcodebuild -workspace ios/StatusIm.xcworkspace -scheme StatusIm -configuration Release -destination 'generic/platform=iOS' -UseModernBuildSystem=N clean archive
|
||||
|
||||
release-desktop: export TARGET ?= $(HOST_OS)
|
||||
release-desktop: ##@build build release for desktop release based on TARGET
|
||||
@$(MAKE) jsbundle-desktop && \
|
||||
scripts/copy-translations.sh && \
|
||||
scripts/build-desktop.sh; \
|
||||
$(MAKE) watchman-clean
|
||||
|
||||
release-windows-desktop: export TARGET ?= windows
|
||||
release-windows-desktop: ##@build build release for windows desktop release
|
||||
@$(MAKE) jsbundle-desktop && \
|
||||
scripts/copy-translations.sh && \
|
||||
scripts/build-desktop.sh; \
|
||||
$(MAKE) watchman-clean
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
library 'status-react-jenkins@v1.1.4'
|
||||
library 'status-react-jenkins@v1.1.5'
|
||||
|
||||
pipeline {
|
||||
agent { label 'linux' }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
library 'status-react-jenkins@v1.1.4'
|
||||
library 'status-react-jenkins@v1.1.5'
|
||||
|
||||
pipeline {
|
||||
agent { label 'linux' }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
library 'status-react-jenkins@v1.1.4'
|
||||
library 'status-react-jenkins@v1.1.5'
|
||||
|
||||
pipeline {
|
||||
agent { label 'macos-xcode-11.4.1' }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
library 'status-react-jenkins@v1.1.4'
|
||||
library 'status-react-jenkins@v1.1.5'
|
||||
|
||||
pipeline {
|
||||
agent { label 'linux' }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
library 'status-react-jenkins@v1.1.4'
|
||||
library 'status-react-jenkins@v1.1.5'
|
||||
|
||||
pipeline {
|
||||
agent { label 'macos-xcode-11.4.1' }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
library 'status-react-jenkins@v1.1.4'
|
||||
library 'status-react-jenkins@v1.1.5'
|
||||
|
||||
pipeline {
|
||||
agent { label params.AGENT_LABEL }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
library 'status-react-jenkins@v1.1.4'
|
||||
library 'status-react-jenkins@v1.1.5'
|
||||
|
||||
pipeline {
|
||||
agent { label 'linux' }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
library 'status-react-jenkins@v1.1.1'
|
||||
library 'status-react-jenkins@v1.1.5'
|
||||
|
||||
pipeline {
|
||||
agent { label 'macos' }
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
library 'status-react-jenkins@v1.1.1'
|
||||
library 'status-react-jenkins@v1.1.5'
|
||||
|
||||
pipeline {
|
||||
agent { label 'linux' }
|
||||
|
|
|
@ -39,7 +39,7 @@ let
|
|||
lib.mkFilter {
|
||||
root = path;
|
||||
include = [
|
||||
"android/.*" "translations/.*" "status-modules/.*"
|
||||
"android/.*" "status-modules/.*"
|
||||
"resources/.*" "mobile/js_files/.*" ".babelrc"
|
||||
];
|
||||
exclude = [
|
||||
|
@ -80,7 +80,6 @@ let
|
|||
chmod -R u+w ${projectBuildDir}
|
||||
|
||||
cp -R ${projectBuildDir}/status-modules/ ${projectBuildDir}/node_modules/status-modules/
|
||||
cp -R ${projectBuildDir}/translations/ ${projectBuildDir}/node_modules/status-modules/translations/
|
||||
|
||||
# Set up symlinks to mobile enviroment in project root
|
||||
${createMobileFilesSymlinks projectBuildDir}
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
use_chmod="$1"
|
||||
|
||||
GIT_ROOT=$(cd "${BASH_SOURCE%/*}" && git rev-parse --show-toplevel)
|
||||
|
||||
if [ ! -d "${GIT_ROOT}/node_modules" ]; then
|
||||
echo "node_modules directory is missing, aborting!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# 1. copy translations to node_modules
|
||||
# 2. touch node_modules/.copied~ to avoid copying node_modules again during build
|
||||
|
||||
cp -R "${GIT_ROOT}/translations" "${GIT_ROOT}/status-modules/"
|
||||
[ "$use_chmod" == 'chmod' ] && chmod u+w "${GIT_ROOT}/node_modules"
|
||||
cp -R "${GIT_ROOT}/status-modules" "${GIT_ROOT}/node_modules/"
|
||||
[ -f "${GIT_ROOT}/node_modules/.copied~" ] && touch "${GIT_ROOT}/node_modules/.copied~"
|
||||
[ "$use_chmod" == 'chmod' ] && chmod u-w "${GIT_ROOT}/node_modules"
|
||||
|
||||
set +e
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"name": "status-modules",
|
||||
"version": "1.0.0",
|
||||
"files": []
|
||||
}
|
Loading…
Reference in New Issue