You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuweni.apache.org by to...@apache.org on 2020/05/01 07:15:50 UTC

[incubator-tuweni] branch parallel_build created (now bb8dbb8)

This is an automated email from the ASF dual-hosted git repository.

toulmean pushed a change to branch parallel_build
in repository https://gitbox.apache.org/repos/asf/incubator-tuweni.git.


      at bb8dbb8  fine tune build

This branch includes the following new commits:

     new bb8dbb8  fine tune build

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@tuweni.apache.org
For additional commands, e-mail: commits-help@tuweni.apache.org


[incubator-tuweni] 01/01: fine tune build

Posted by to...@apache.org.
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 <an...@lunar-ocean.com>
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: commits-unsubscribe@tuweni.apache.org
For additional commands, e-mail: commits-help@tuweni.apache.org