You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by vl...@apache.org on 2019/10/07 14:33:34 UTC

[jmeter] branch vlsi/github_actions updated (42194bb -> a5de858)

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

vladimirsitnikov pushed a change to branch vlsi/github_actions
in repository https://gitbox.apache.org/repos/asf/jmeter.git.


 discard 42194bb  Add vlsi/github_actions branch
 discard 9c22eae  Add GitHub Actions CI
     new a5de858  Add GitHub Actions CI

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (42194bb)
            \
             N -- N -- N   refs/heads/vlsi/github_actions (a5de858)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:
 .github/workflows/main.yml | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)


[jmeter] 01/01: Add GitHub Actions CI

Posted by vl...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

vladimirsitnikov pushed a commit to branch vlsi/github_actions
in repository https://gitbox.apache.org/repos/asf/jmeter.git

commit a5de858f5d22d4a4d889cdf6223fca52f78bb98f
Author: Vladimir Sitnikov <si...@gmail.com>
AuthorDate: Mon Oct 7 13:58:40 2019 +0300

    Add GitHub Actions CI
---
 .github/workflows/main.yml | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000..6e73190
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,43 @@
+name: CI
+
+on:
+  push:
+    branches:
+      - '*'
+  pull_request:
+    branches:
+      - '*'
+
+jobs:
+  windows:
+    name: 'Windows (JDK 13)'
+    runs-on: windows-latest
+    steps:
+    - uses: actions/checkout@master
+      with:
+        fetch-depth: 50
+    - name: 'Set up JDK 13'
+      uses: actions/setup-java@v1
+      with:
+        java-version: 13
+    - name: 'Test'
+      shell: bash
+      run: |
+        ./gradlew --version
+        ./gradlew build -x distTar -x distTarSha512 -x signDistTar -x distTarSource -x distTarSourceSha512 -x signDistTarSource
+
+  mac:
+    name: 'Mac OS (JDK 13)'
+    runs-on: macos-latest
+    steps:
+    - uses: actions/checkout@master
+      with:
+        fetch-depth: 50
+    - name: 'Set up JDK 13'
+      uses: actions/setup-java@v1
+      with:
+        java-version: 13
+    - name: 'Test'
+      run: |
+        ./gradlew --version
+        ./gradlew build -x distTar -x distTarSha512 -x signDistTar -x distTarSource -x distTarSourceSha512 -x signDistTarSource -Dskip.test_TestDNSCacheManager.testWithCustomResolverAnd1Server=true