PT #164169543: Remove temp set version job

This commit is contained in:
BoykoAlex
2019-03-21 12:31:45 -04:00
parent 4d2d75cf92
commit 2514892965
3 changed files with 0 additions and 58 deletions

View File

@@ -1125,21 +1125,6 @@ jobs:
- put: version
params:
file: version/version
- name: set-theia-version-to-vscode-version
serial: true
plan:
- aggregate:
- get: sts4
- get: version
- task: bump-theia-versions
file: sts4/concourse/tasks/bump-theia-versions.yml
- put: sts4
params:
repository: out
rebase: true
- put: theia-version
params:
file: version/version
- name: bump-version-patch
serial: true
plan:
@@ -1447,7 +1432,6 @@ groups:
- bump-version-patch
- bump-version-minor
- bump-version-major
- set-theia-version-to-vscode-version
- name: atom-snapshots
jobs:
# - build-atom-snapshot-website

View File

@@ -1,30 +0,0 @@
#!/bin/bash
set -e
set -v
workdir=`pwd`
theia_sources=$workdir/sts4/theia-extensions
theia_version=`cat version/version`
echo "theia-version=$theia_version"
# theia extensions
cd $theia_sources
for extension_id in $(ls -d theia-*)
do
if [ $extension_id != "theia-commons" ]; then
cd $theia_sources/$extension_id
echo "Should update version of $extension_id to $theia_version"
lerna version $theia_version --exact --no-git-tag-version --no-push --yes
git add ./
echo ""
fi
done
git config user.email "kdevolder@pivotal.io"
git config user.name "Kris De Volder"
git commit \
-m "Bump Theia version to ${theia_version}"
git clone $workdir/sts4 $workdir/out

View File

@@ -1,12 +0,0 @@
inputs:
- name: version
- name: sts4
outputs:
- name: out
platform: linux
image_resource:
type: docker-image
source:
repository: kdvolder/sts4-build-env
run:
path: sts4/concourse/tasks/bump-theia-versions.sh