File tree Expand file tree Collapse file tree 2 files changed +7
-20
lines changed
Expand file tree Collapse file tree 2 files changed +7
-20
lines changed Original file line number Diff line number Diff line change @@ -26,28 +26,15 @@ script:
2626- RUST_TARGET_PATH=`pwd` xargo build --target x86_64-bootloader --release
2727- objcopy -O binary -S target/x86_64-bootloader/release/bootloader bootimage.bin
2828
29- after_success :
30- - |
31- if [ "$TRAVIS_PULL_REQUEST" == "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
32- REPO=`git config remote.origin.url`
33- SSH_REPO=${REPO/https:\/\/github.com\//git@github.com:}
34-
35- git tag -f latest HEAD
36- git config user.name "Travis CI"
37- git config user.email "travis@phil-opp.com"
38-
39- eval `ssh-agent -s`
40- openssl aes-256-cbc -K $encrypted_156fe11b627b_key -iv $encrypted_156fe11b627b_iv -in bootloader_id_rsa.enc -d | ssh-add -
41- git push $SSH_REPO latest --force
42- fi
43-
4429deploy :
45- provider : releases
46- api_key :
47- secure : yO/VIJt4Dl+vMCGzkv8wIDQlHuasUPmQqlbgw1EA/uMz4WeR5mu+l/JKOARXevHeU9xqhF84ooKIDUZ/86N0N68OE77HJzfGAr2eRzeAti9v+zo4uJ7mygl5FmChWe7Ah2AX7/Dg5Ul/OqCHnExB5GjmOu0csvQiB4pyFVB0fw5HPy3LyWqDHuqot/t/eyPtlG2WXIcxjUTXvkHBiKc7nrG/Q6T6R0K1Pzxo+LeY2HNLEuiCc+vhclCeHuRPW/isBOs24FWMEJEl2qkTZIeOJhHWNd0XzOyRfupm9wver0gAVfM4rctkEc3cU6XhbEaRkdqsxna4au0Sborpv5eUld5ELhkxifZFQUjj1m+qu1wyFmNYiQU+RtAqcCpoRBJjt4eczmfb+32XZbTkmCY0MtKV5jIajInmA3JYKKlszk+WyDDlvCXaNj/XD4grTbSZ+WtJQvO3EfeT3F4/OLyk33hMsZ348Vkl8fP0T9PoWko0cYUhBkiSa3dsbbogdCXf/V8cK2IwNSXer/tjZ//AZlkwDiSLOKZ9C94SiB/6VJWdAl+Z9qC6TygKHXrXSB3f6oJFVw7DfFzRhG1SqlaNa9Ujq/PwxJUfZano17zV7kP7WdoJgqHBjukwzeIok0Y3JIrwxp4+xaz6Z/IrnlSzFA3jyUHZ4kLvGeijuc63Pp0=
48- file : bootimage.bin
30+ provider : script
4931 skip_cleanup : true
50- overwrite : true
5132 on :
5233 repo : rust-osdev/bootloader
5334 tags : true
35+ script :
36+ - |
37+ if [[ "$TRAVIS_TAG" == v* ]; then
38+ echo "Deploy for $TRAVIS_TAG"
39+ echo "UNIMPLEMENTED!"
40+ fi
You can’t perform that action at this time.
0 commit comments