forked from ReactionMechanismGenerator/RMG-Py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trigger-rmg-tests.sh
executable file
·53 lines (41 loc) · 1.45 KB
/
trigger-rmg-tests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/bin/bash
# This script is designed to be run by Github Actions workflow
# to trigger the RMG-tests at
# https://github.com/reactionmechanismgenerator/rmg-tests
set -e # exit with nonzero exit code if anything fails
git config --global user.name "RMG Bot"
git config --global user.email "rmg_dev@mit.edu"
BRANCH=${GITHUB_REF#refs/heads/}
echo "GITHUB_WORKSPACE: $GITHUB_WORKSPACE"
echo "BRANCH: $BRANCH"
echo "RMG_DATABASE_BRANCH: $RMG_DATABASE_BRANCH"
# URL for the official RMG-tests repository
REPO=https://${GH_TOKEN}@github.com/ReactionMechanismGenerator/RMG-tests.git
# create a temporary folder:
REPO_NAME=$(basename $REPO)
TARGET_DIR=$(mktemp -d /tmp/$REPO_NAME.XXXX)
REV=$(git rev-parse HEAD)
# clone RMG-tests repo in the newly created folder:
git clone ${REPO} ${TARGET_DIR}
# go inside the newly created folder:
cd $TARGET_DIR
# create a new branch in RMG-tests with the name equal to
# the branch name of the tested RMG-Py branch:
if [ "$RMG_DATABASE_BRANCH" == "main" ]
then
RMGTESTSBRANCH=rmgpy-$BRANCH
else
RMGTESTSBRANCH=rmgpydb-$BRANCH
fi
git checkout -b $RMGTESTSBRANCH || true
git checkout $RMGTESTSBRANCH
# create an empty commit with the SHA-ID of the
# tested commit of the RMG-Py branch:
if [ "$RMG_DATABASE_BRANCH" == "main" ]
then
git commit --allow-empty -m rmgpy-$REV
else
git commit --allow-empty -m rmgpydb-$REV-${RMG_DATABASE_BRANCH}
fi
# push to the branch to the RMG/RMG-tests repo:
git push -f $REPO $RMGTESTSBRANCH > /dev/null