Skip to content
Snippets Groups Projects
Commit 9e2780be authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[Dome] synchronize with external repo

parent 8347480a
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,5 @@ yarn-error.log ...@@ -10,6 +10,5 @@ yarn-error.log
/bin /bin
/dist /dist
/html /html
/src/dome
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
#!/bin/sh
DOME=$1
BRANCH=$2
if [ "$DOME" == "" ] || [ "$BRANCH" == "" ]
then
echo "Usage: push-electron.sh <dome-clone-dir> <new-branch>"
exit 1
fi
git -C $DOME remote -v | grep -q dome/electron.git
if [ "$?" != "0" ]
then
echo "Clone of dome/electron not found in '$DOME'"
exit 1
fi
echo "Push updates to $DOME#$BRANCH"
git -C $DOME checkout -B $BRANCH
FILES=$(cd src/dome ; git ls-files)
for f in $FILES
do
cp -f src/dome/$f $DOME/$f
done
git -C $DOME commit -a
...@@ -7,6 +7,12 @@ ...@@ -7,6 +7,12 @@
.dome-*.orig .dome-*.orig
.dome-*.lock .dome-*.lock
#########################################
# Dome Repository
#########################################
/.gitdome
######################################### #########################################
# JavaScript # JavaScript
######################################### #########################################
......
# --------------------------------------------------------------------------
# --- Pulling Dome Updates
# --------------------------------------------------------------------------
if [ ! -z "$(git status --porcelain)" ]
then
echo "Local non-commited modifications, aborted."
exit 1
fi
if [ ! -d .gitdome ]
then
git clone git@git.frama-c.com:dome/electron.git .gitdome
fi
head=$(git rev-parse --abbrev-ref HEAD)
commit=$(git -C .gitdome rev-parse HEAD)
remote=$(git -C .gitdome rev-parse --abbrev-ref HEAD)
git checkout stable/dome
if [ "$?" != "0" ]
then
echo "Missing local branch stable/dome, aborted."
exit 1
fi
echo "Pulling Dome updates from $remote to stable/dome..."
git -C .gitdome pull --prune
for f in $(git -C .gitdome ls-files)
do
mkdir -p $(dirname $f)
cp -f .gitdome/$f $f
git add $f
done
if [ ! -z "$(git status --porcelain)" ]
then
git commit -m "[Dome] $commit"
echo "Dome repository updated."
git checkout $head
echo "Merging Dome updates..."
git merge stable/dome
else
echo "Dome is already up-to-date."
git checkout $head
fi
# --------------------------------------------------------------------------
# --------------------------------------------------------------------------
# --- Pulling Dome Updates
# --------------------------------------------------------------------------
branch=$1
app=$(basename $1)
if [ "$branch" == "" ]
then
echo "Missing branch name, aborted."
exit 1
fi
if [ ! -z "$(git status --porcelain)" ]
then
echo "Local non-commited modifications, aborted."
exit 1
fi
if [ ! -d .gitdome ]
then
git clone git@git.frama-c.com:dome/electron.git .gitdome
fi
head=$(git rev-parse --abbrev-ref HEAD)
commit=$(git rev-parse HEAD)
remote=$(git -C .gitdome rev-parse --abbrev-ref HEAD)
echo "[dome] update $branch"
git -C .gitdome fetch --prune
git -C .gitdome checkout $branch
if [ "$?" != "0" ]
then
git -C .gitdome checkout -b $branch
else
git -C .gitdome pull --rebase
fi
echo "[dome] push updates from $head to $branch..."
for f in $(git ls-files)
do
mkdir -p .gitdome/$(dirname $f)
cp -f $f .gitdome/$f
git -C .gitdome add $f
done
echo "[dome] commit $branch"
git -C .gitdome commit -e -m "[$app] $commit"
echo "[dome] push $branch"
git -C .gitdome push origin -f -u $branch
echo "[dome] back to $remote"
git -C .gitdome checkout $remote
# --------------------------------------------------------------------------
...@@ -7,13 +7,15 @@ ...@@ -7,13 +7,15 @@
APP?=$(shell basename $(PWD)) APP?=$(shell basename $(PWD))
COPYRIGHT?=CEA Tech COPYRIGHT?=CEA Tech
DOME_MK_NAME=$(shell echo $(APP) | tr [:upper:] [:lower:])
DOME?=dome DOME?=dome
DOME_ARGS?= DOME_ARGS?=
DOME_EXPORTS?= DOME_EXPORTS?=
DOME_PLUGINS?= DOME_PLUGINS?=
DOME_DOC?=html/dome DOME_DOC?=html/dome
DOME_APP_CLI?=bin/$(shell echo $(APP) | tr [:upper:] [:lower:]) DOME_APP_CLI?=bin/$(DOME_MK_NAME)
DOME_APP_DOC?=html/$(shell echo $(APP) | tr [:upper:] [:lower:]) DOME_APP_DOC?=html/$(DOME_MK_NAME)
DOME_APP_SRC?=src/renderer DOME_APP_SRC?=src/renderer
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
...@@ -99,6 +101,28 @@ dome-pkg: .dome-pkg.stamp ...@@ -99,6 +101,28 @@ dome-pkg: .dome-pkg.stamp
package.json: package.json:
yarn init yarn init
# --------------------------------------------------------------------------
# --- Dome Synchronization
# --------------------------------------------------------------------------
ifneq ("$(DOME)",".")
.PHONY: dome-pull dome-push
dome-pull:
@echo "[Dome] ----------------------------------------------------------------"
@echo "[Dome] Synchronize with updates"
@echo "[Dome] ----------------------------------------------------------------"
@(cd $(DOME) && ./template/dome-pull.sh)
dome-push:
@echo "[Dome] ----------------------------------------------------------------"
@echo "[Dome] Publishing Dome updates to feature/app/$(DOME_MK_NAME)"
@echo "[Dome] ----------------------------------------------------------------"
@(cd $(DOME) && ./template/dome-push.sh feature/app/$(DOME_MK_NAME))
endif
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
# --- Application Templating # --- Application Templating
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment