mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-18 05:34:41 +10:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
db1afbd17a | ||
|
|
b5a6849834 | ||
|
|
b97f997a40 | ||
|
|
c2b46ceb35 | ||
|
|
b6b51ba510 | ||
|
|
3f1e9ec9b4 |
@@ -13,7 +13,7 @@ matrix:
|
|||||||
- os: osx
|
- os: osx
|
||||||
|
|
||||||
language: node_js
|
language: node_js
|
||||||
node_js: "8"
|
node_js: "10"
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
||||||
|
|||||||
2
build.sh
2
build.sh
@@ -44,7 +44,7 @@ if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
|||||||
# unless the app name is code-oss
|
# unless the app name is code-oss
|
||||||
# as we are renaming the application to vscodium
|
# as we are renaming the application to vscodium
|
||||||
# we need to edit a line in the post install template
|
# we need to edit a line in the post install template
|
||||||
sed -i "s/code-oss/vscodium/" resources/linux/debian/postinst.template
|
sed -i "s/code-oss/codium/" resources/linux/debian/postinst.template
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||||
|
|||||||
@@ -136,6 +136,9 @@ git pull origin master # in case another build just pushed
|
|||||||
git add .
|
git add .
|
||||||
dateAndMonth=`date "+%D %T"`
|
dateAndMonth=`date "+%D %T"`
|
||||||
git commit -m "Travis update: $dateAndMonth (Build $TRAVIS_BUILD_NUMBER)"
|
git commit -m "Travis update: $dateAndMonth (Build $TRAVIS_BUILD_NUMBER)"
|
||||||
git push origin master --quiet
|
if ! git push origin master --quiet; then
|
||||||
|
git pull origin master
|
||||||
|
git push origin master --quiet
|
||||||
|
fi
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
steps:
|
steps:
|
||||||
- task: NodeTool@0
|
- task: NodeTool@0
|
||||||
inputs:
|
inputs:
|
||||||
versionSpec: '8.x'
|
versionSpec: '10.x'
|
||||||
- script: |
|
- script: |
|
||||||
choco install jq
|
choco install jq
|
||||||
displayName: 'install jq from choco'
|
displayName: 'install jq from choco'
|
||||||
|
|||||||
Reference in New Issue
Block a user