Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 56c66522b646749e61a5d697c6f98c2b375ab19d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

clean up "dirt" from previous build
# see Bug 420078
git submodule foreach git clean -f -d -x
git submodule foreach git reset --hard HEAD
git clean -f -d -x
git reset --hard HEAD

# update master and submodules
git checkout master
git pull --recurse-submodules
git submodule update

# run the build
mvn clean verify

# find the results in
# eclipse.platform.releng.tychoeclipsebuilder/sdk/target/products/*

Back to the top