mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-10 23:27:53 +00:00
Revert github repository deploy removal
This commit is contained in:
parent
cb0791c915
commit
bc39b707d4
25
.travis.yml
25
.travis.yml
@ -13,6 +13,12 @@ jdk:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
|
- stage: init
|
||||||
|
name: "Initialize webdav cache"
|
||||||
|
os: linux
|
||||||
|
cache: false
|
||||||
|
script:
|
||||||
|
- sh scripts/yadisk_clear.sh
|
||||||
- stage: build
|
- stage: build
|
||||||
name: "Build for Linux i686"
|
name: "Build for Linux i686"
|
||||||
cache: ccache
|
cache: ccache
|
||||||
@ -128,8 +134,17 @@ jobs:
|
|||||||
- sh scripts/build_${TRAVIS_OS_NAME}_engine.sh
|
- sh scripts/build_${TRAVIS_OS_NAME}_engine.sh
|
||||||
after_script:
|
after_script:
|
||||||
- sh scripts/continious_upload.sh xash3d-vc.7z xash3d-vc2008-sln.7z
|
- sh scripts/continious_upload.sh xash3d-vc.7z xash3d-vc2008-sln.7z
|
||||||
|
- stage: deploy
|
||||||
branches:
|
name: "Deploy to github repo"
|
||||||
except:
|
os: linux
|
||||||
# Do not build tags that we create when we upload to GitHub Releases
|
cache: false
|
||||||
- /^(?i:continuous)/
|
script:
|
||||||
|
- |
|
||||||
|
sh scripts/travis-deploy.sh
|
||||||
|
xash3d-fwgs-i686.AppImage
|
||||||
|
xash3d-fwgs-x86_64.AppImage
|
||||||
|
xash3d-vc.7z
|
||||||
|
xash3d-vc2008-sln.7z
|
||||||
|
xashdroid.apk
|
||||||
|
xashds-linux-i686
|
||||||
|
xashds-linux-x86_64
|
||||||
|
@ -11,3 +11,17 @@ chmod +x upload.sh
|
|||||||
|
|
||||||
export GITHUB_TOKEN=$GH_TOKEN
|
export GITHUB_TOKEN=$GH_TOKEN
|
||||||
./upload.sh $*
|
./upload.sh $*
|
||||||
|
|
||||||
|
##################################
|
||||||
|
#
|
||||||
|
# Yandex.Disk
|
||||||
|
#
|
||||||
|
##################################
|
||||||
|
|
||||||
|
FOLDER_NAME=$DEPLOY_BRANCH-$TRAVIS_BRANCH
|
||||||
|
WEBDAV_SRV=https://$YANDEX_DISK_USER:$YANDEX_DISK_TOKEN@webdav.yandex.ru
|
||||||
|
|
||||||
|
for file in $*; do
|
||||||
|
echo "Uploading $file..."
|
||||||
|
curl -T $file $WEBDAV_SRV/$FOLDER_NAME/$file
|
||||||
|
done
|
||||||
|
89
scripts/travis-deploy.sh
Executable file
89
scripts/travis-deploy.sh
Executable file
@ -0,0 +1,89 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
die()
|
||||||
|
{
|
||||||
|
echo $1
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
|
||||||
|
echo "Travis should not deploy from pull requests"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
append_readme()
|
||||||
|
{
|
||||||
|
for arg in $FILES; do
|
||||||
|
echo \* [$arg]\(https://github.com/FWGS/xash3d-deploy/blob/$DEPLOY_BRANCH-$TRAVIS_BRANCH/$arg\?raw\=true\) >> README.md
|
||||||
|
echo >> README.md
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
generate_continious_tag()
|
||||||
|
{
|
||||||
|
if [ $TRAVIS_BRANCH == "master" ]; then
|
||||||
|
echo "continuous"
|
||||||
|
else
|
||||||
|
echo "continuous-$TRAVIS_BRANCH"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
generate_readme()
|
||||||
|
{
|
||||||
|
TAG=$(generate_continuous_tag)
|
||||||
|
echo \# Moved to GitHub Releases at [here]\(https://github.com/FWGS/xash3d-fwgs/releases/tag/$TAG\) >> README.md
|
||||||
|
echo >> README.md
|
||||||
|
echo >> README.md
|
||||||
|
echo >> README.md
|
||||||
|
echo >> README.md
|
||||||
|
echo \# $TRAVIS_BRANCH branch autobuilds from $DEPLOY_BRANCH >> README.md
|
||||||
|
echo >> README.md
|
||||||
|
echo Short changelog: >> README.md
|
||||||
|
echo \`\`\` >> README.md
|
||||||
|
(cd $TRAVIS_BUILD_DIR; TZ=UTC git log --pretty=format:'%h %ad %s' --date iso-local -n 10 $REV_RANGE)| cut -d ' ' -f 1-3,5-100 >> README.md
|
||||||
|
echo \`\`\` >> README.md
|
||||||
|
echo >> README.md
|
||||||
|
echo [Code on GitHub]\(https://github.com/FWGS/xash3d-fwgs/tree/$TRAVIS_COMMIT\) >> README.md
|
||||||
|
echo >> README.md
|
||||||
|
echo [Full changelog for this build]\(https://github.com/FWGS/xash3d-fwgs/commits/$TRAVIS_COMMIT\) >> README.md
|
||||||
|
echo >> README.md
|
||||||
|
append_readme
|
||||||
|
echo $TRAVIS_COMMIT > commit.txt
|
||||||
|
}
|
||||||
|
|
||||||
|
yadisk_download()
|
||||||
|
{
|
||||||
|
FOLDER_NAME=$DEPLOY_BRANCH-$TRAVIS_BRANCH
|
||||||
|
WEBDAV_SRV=https://$YANDEX_DISK_USER:$YANDEX_DISK_TOKEN@webdav.yandex.ru
|
||||||
|
|
||||||
|
for file in $*; do
|
||||||
|
curl -L $WEBDAV_SRV/$FOLDER_NAME/$file -o $file
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
PUSHED_COMMIT=$(curl --fail https://raw.githubusercontent.com/FWGS/xash3d-deploy/$DEPLOY_BRANCH-$TRAVIS_BRANCH/commit.txt)
|
||||||
|
echo "Pushed commit: $PUSHED_COMMIT"
|
||||||
|
if [ ! -z "$PUSHED_COMMIT" ]; then
|
||||||
|
REV_RANGE="HEAD...$PUSHED_COMMIT"
|
||||||
|
else
|
||||||
|
REV_RANGE="HEAD"
|
||||||
|
fi
|
||||||
|
|
||||||
|
git config --global user.name FWGS-deployer
|
||||||
|
git config --global user.email FWGS-deployer@users.noreply.github.com
|
||||||
|
|
||||||
|
FILES=$*
|
||||||
|
|
||||||
|
# Create new repo with new files
|
||||||
|
mkdir xash3d-deploy
|
||||||
|
cd xash3d-deploy
|
||||||
|
git init
|
||||||
|
git remote add travis-deploy-public https://FWGS-deployer:${GH_TOKEN}@github.com/FWGS/xash3d-deploy.git
|
||||||
|
git checkout -b $DEPLOY_BRANCH-$TRAVIS_BRANCH
|
||||||
|
yadisk_download $FILES
|
||||||
|
generate_readme
|
||||||
|
git add .
|
||||||
|
git commit -m "Latest travis deploy $TRAVIS_COMMIT"
|
||||||
|
git push -q --force travis-deploy-public $DEPLOY_BRANCH-$TRAVIS_BRANCH >/dev/null 2>/dev/null
|
||||||
|
|
||||||
|
exit 0
|
5
scripts/yadisk_clear.sh
Normal file
5
scripts/yadisk_clear.sh
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
FOLDER_NAME=$DEPLOY_BRANCH-$TRAVIS_BRANCH
|
||||||
|
WEBDAV_SRV=https://$YANDEX_DISK_USER:$YANDEX_DISK_TOKEN@webdav.yandex.ru
|
||||||
|
|
||||||
|
curl -X DELETE $WEBDAV_SRV/$FOLDER_NAME
|
||||||
|
curl -X MKCOL $WEBDAV_SRV/$FOLDER_NAME
|
Loading…
Reference in New Issue
Block a user