@@ -19,35 +19,27 @@ steps:
1919 go get github.com/onsi/gomega/...
2020
2121 cd '$(modulePath)'
22- echo Currently set AKS-Engine Version '$(AKS_ENGINE_VERSION)'
23- if [ -z '$(AKS_ENGINE_VERSION)' ]
24- then
25- echo No AKS-Engine version set, using latest...
26- export aksEVersion=$(curl -L -s -H 'Accept: application/json' https://github.com/Azure/aks-engine/releases/latest | sed -e 's/.*"tag_name":"\([^"]*\)".*/\1/')
27- else
28- echo Found set AKS-Engine version '$(AKS_ENGINE_VERSION)'...
29- export aksEVersion='$(AKS_ENGINE_VERSION)'
30- fi
31- echo Using AKS-Engine version $aksEVersion
3222
33- #download source
34- wget https://github.com/csfmomo/aks-engine/archive/v1.0.9.3.tar.gz
23+ AKS_ENGINE_FORK=csfmomo
24+ AKS_ENGINE_VERSION=v1.0.9.5
25+
26+ # Get source
27+ wget https://github.com/$AKS_ENGINE_FORK/aks-engine/archive/$AKS_ENGINE_VERSION.tar.gz
3528
36- # extract source
37- #tar -zxf $aksEVersion.tar.gz
38- tar -zxf v1.0.9.3.tar.gz
3929
30+ # Extract source (to be able to run `make test-kubernetes` later on)
31+ tar -zxf $AKS_ENGINE_VERSION.tar.gz
4032 # move source to current directory
4133 mv aks-engine-*/* .
4234
43- # download binary
44- wget https://github.com/csfmomo /aks-engine/releases/download/v1.0.9.3 /aks-engine-v1.0.9.3 -linux-amd64.tar.gz
35+ # Download aks-engine binary
36+ wget https://github.com/$AKS_ENGINE_FORK /aks-engine/releases/download/$AKS_ENGINE_VERSION /aks-engine-$AKS_ENGINE_VERSION -linux-amd64.tar.gz
4537
4638 rm -rf ./bin
4739 mkdir ./bin
4840
4941 # extract binary
50- tar -zxvf aks-engine-v1.0.9.3 -linux-amd64.tar.gz -C bin
42+ tar -zxvf aks-engine-$AKS_ENGINE_VERSION -linux-amd64.tar.gz -C bin
5143 mv ./bin/aks-engine-*/* ./bin/
5244 ls -l ./bin
5345 ./bin/aks-engine version
0 commit comments