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 89a9d8bbefa1ed71a664bdf7a322241e5e4c2709 Author: Vladimir Sitnikov <[email protected]> AuthorDate: Mon Oct 7 15:40:09 2019 +0300 Add vlsi/github_actions branch --- .github/workflows/main.yml | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 60c54c1..b8dcec1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,27 +4,19 @@ on: push: branches: - '*' + - vlsi/github_actions pull_request: branches: - '*' jobs: - linux: - name: 'Linux (JDK 12)' - runs-on: ubuntu-latest - container: junitteam/build:latest - steps: - - uses: actions/checkout@master - - name: 'Test' - run: | - ./gradlew --version - ./gradlew build - windows: name: 'Windows (JDK 12)' runs-on: windows-latest steps: - uses: actions/checkout@master + with: + fetch-depth: 50 - name: 'Set up JDK 12' uses: actions/setup-java@v1 with: @@ -33,13 +25,15 @@ jobs: shell: bash run: | ./gradlew --version - ./gradlew build + ./gradlew build -x distTar -x distTarSha512 -x signDistTar -x distTarSource -x distTarSourceSha512 -x signDistTarSource mac: name: 'Mac OS (JDK 12)' runs-on: macos-latest steps: - uses: actions/checkout@master + with: + fetch-depth: 50 - name: 'Set up JDK 12' uses: actions/setup-java@v1 with: @@ -47,4 +41,4 @@ jobs: - name: 'Test' run: | ./gradlew --version - ./gradlew build + ./gradlew build -x distTar -x distTarSha512 -x signDistTar -x distTarSource -x distTarSourceSha512 -x signDistTarSource
