This is an automated email from the ASF dual-hosted git repository. toulmean pushed a commit to branch parallel_build in repository https://gitbox.apache.org/repos/asf/incubator-tuweni.git
commit bb8dbb858f6bcbe5ed1659c167cfdd737c32ff55 Author: Antoine Toulme <[email protected]> AuthorDate: Fri May 1 00:15:25 2020 -0700 fine tune build --- .github/pull_request_template.md | 17 ----------------- .github/workflows/master-pr-build.yml | 8 +++++--- build.gradle | 3 ++- 3 files changed, 7 insertions(+), 21 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index f225d15..e035359 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -6,20 +6,3 @@ ## Fixed Issue(s) <!-- Please link to fixed issue(s) here using format: fixes #<issue number> --> <!-- Example: "fixes #2" --> - -<!-- - Licensed to the Apache Software Foundation (ASF) under one or more - contributor license agreements. See the NOTICE file distributed with - this work for additional information regarding copyright ownership. - The ASF licenses this file to You under the Apache License, Version 2.0 - (the "License"); you may not use this file except in compliance with - the License. You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. ---> \ No newline at end of file diff --git a/.github/workflows/master-pr-build.yml b/.github/workflows/master-pr-build.yml index cb83e4a..62bfc76 100644 --- a/.github/workflows/master-pr-build.yml +++ b/.github/workflows/master-pr-build.yml @@ -75,7 +75,8 @@ jobs: with: gradle-version: 6.3 arguments: assemble -x test - - uses: actions/upload-artifact@v1 + - name: Upload build + uses: actions/upload-artifact@v1 with: name: Libs path: build/libs @@ -109,7 +110,8 @@ jobs: with: gradle-version: 6.3 arguments: test - - uses: actions/upload-artifact@v1 + - name: Upload test reports + uses: actions/upload-artifact@v1 with: name: Reports - path: build/reports \ No newline at end of file + path: */build/reports \ No newline at end of file diff --git a/build.gradle b/build.gradle index 83d6ed3..c714dfc 100644 --- a/build.gradle +++ b/build.gradle @@ -120,7 +120,8 @@ if (file('.git').exists()) { 'hard_example.toml', 'toml-v0.5.0-spec-example.toml', 'eth2-reference-tests/**', - 'package-lock.json' + 'package-lock.json', + '.github/pull_request_template.md' ]) return list } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
