-
Notifications
You must be signed in to change notification settings - Fork 205
/
.travis.yml
41 lines (41 loc) · 1.36 KB
/
.travis.yml
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
language: csharp
dist: bionic
sudo: false
env:
global:
- ORG="OfficeDev"
- REPO_SOURCE="microsoft-teams-icebreaker-app"
- REPO_DEST="${REPO_SOURCE}.wiki"
- GH_REPO_DEST="github.com/${ORG}/${REPO_DEST}.git"
- GH_REPO_CONSOLIDATE="github.com/${ORG}/${REPO_SOURCE}.git"
install: skip
stages:
- name: WikiUpdate
jobs:
include:
- stage: WikiUpdate
if: (branch = main) AND (type = push)
script:
- rm -rf ${REPO_SOURCE}
- rm -rf ${REPO_DEST}
# Clone repositories
- git clone https://${GH_REPO_DEST}
- git clone https://${GH_REPO_CONSOLIDATE}
# Update wiki repository with wiki folder contents
- yes | cp -rf ${REPO_SOURCE}/Wiki/* ${REPO_DEST}/
- cd ${REPO_DEST}
# Terminate Travis CI build when no changes detected
- |
if git diff-index --quiet HEAD && [ ! -n "$(git status -s)" ]; then
set +e
pkill -9 -P $$ &> /dev/null || true
exit 0
else
git config user.email ${EMAIL}
git config user.name ${USER}
git status
git add .
git commit -m "${REPO_SOURCE} Wiki Update | Travis CI build number $TRAVIS_BUILD_NUMBER"
git remote add origin-wiki "https://${USER}:${GITHUB_TOKEN}@${GH_REPO_DEST}"
git push origin-wiki master
fi