Repository: logging-log4net Updated Branches: refs/heads/feature/cd-pipeline bac9023ae -> ba6bf63be
Jenkinsfile: attempting to work around a nuget glitch for dotnet core Project: http://git-wip-us.apache.org/repos/asf/logging-log4net/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4net/commit/ba6bf63b Tree: http://git-wip-us.apache.org/repos/asf/logging-log4net/tree/ba6bf63b Diff: http://git-wip-us.apache.org/repos/asf/logging-log4net/diff/ba6bf63b Branch: refs/heads/feature/cd-pipeline Commit: ba6bf63be0f71310a3db5f9e4b194263599262d7 Parents: bac9023 Author: Dominik Psenner <[email protected]> Authored: Mon Jul 3 20:13:31 2017 +0200 Committer: Dominik Psenner <[email protected]> Committed: Mon Jul 3 20:13:31 2017 +0200 ---------------------------------------------------------------------- Jenkinsfile | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/ba6bf63b/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 6a597e6..5316466 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -112,6 +112,11 @@ pipeline { } steps { checkout scm + + // workaround: https://github.com/NuGet/Home/issues/5106 + sh 'export HOME=/home' + + // compile sh 'nant compile-netstandard' stash includes: 'bin/**/*.*', name: 'netstandard-assemblies' }
