Performance improvement
This commit is contained in:
parent
73ec6da56a
commit
6edb3b91f8
2 changed files with 13 additions and 6 deletions
17
appveyor.yml
17
appveyor.yml
|
|
@ -15,11 +15,18 @@ cache:
|
||||||
- 'graalvm -> appveyor.yml'
|
- 'graalvm -> appveyor.yml'
|
||||||
|
|
||||||
clone_script:
|
clone_script:
|
||||||
- cmd: >-
|
- ps: >-
|
||||||
git clone -q --branch=%APPVEYOR_REPO_BRANCH% https://github.com/%APPVEYOR_REPO_NAME%.git %APPVEYOR_BUILD_FOLDER%
|
if(-not $env:APPVEYOR_PULL_REQUEST_NUMBER) {
|
||||||
&& cd %APPVEYOR_BUILD_FOLDER%
|
git clone -q --branch=$env:APPVEYOR_REPO_BRANCH https://github.com/$env:APPVEYOR_REPO_NAME.git $env:APPVEYOR_BUILD_FOLDER
|
||||||
&& git checkout -qf %APPVEYOR_REPO_COMMIT%
|
cd $env:APPVEYOR_BUILD_FOLDER
|
||||||
&& git submodule update --init --recursive
|
git checkout -qf $env:APPVEYOR_REPO_COMMIT
|
||||||
|
} else {
|
||||||
|
git clone -q https://github.com/$env:APPVEYOR_REPO_NAME.git $env:APPVEYOR_BUILD_FOLDER
|
||||||
|
cd $env:APPVEYOR_BUILD_FOLDER
|
||||||
|
git fetch -q origin +refs/pull/$env:APPVEYOR_PULL_REQUEST_NUMBER/merge:
|
||||||
|
git checkout -qf FETCH_HEAD
|
||||||
|
}
|
||||||
|
- cmd: git submodule update --init --recursive
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- cmd: >-
|
- cmd: >-
|
||||||
|
|
|
||||||
2
sci
2
sci
|
|
@ -1 +1 @@
|
||||||
Subproject commit 33bc0b0a14d3f9d95ad9ecf9f1b29e95527153a3
|
Subproject commit 01625017d5734eab8716db98f07f2253883a197e
|
||||||
Loading…
Reference in a new issue