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 <[email protected]>
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

Reply via email to