Skip to content

Commit

Permalink
BLADE-730 test
Browse files Browse the repository at this point in the history
  • Loading branch information
simonjhy committed Sep 14, 2023
1 parent ebeefe8 commit 636508e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
timeout-minutes: 60
strategy:
matrix:
cores: [4]
cores: [1]
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand All @@ -48,15 +48,12 @@ jobs:
java-version: 8
distribution: 'zulu'
cache: gradle
- name: Cache
uses: actions/cache@v3
- name: Restore Cache
uses: actions/cache/restore@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/build.gradle', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
key: ${{ runner.os }}-gradle-${{ hashFiles('**/build.gradle') }}
- name: Build
shell: bash
env:
Expand All @@ -69,13 +66,19 @@ jobs:
with:
name: LinuxJDK8-tests.zip
path: tests.zip
- name: Save Cache
uses: actions/cache/save@v3
with:
path: |
~/.gradle/caches
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
LinuxJDK11:
name: Linux JDK11
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
matrix:
cores: [4]
cores: [1]
steps:
- name: Check out repository
uses: actions/checkout@v3
Expand Down
1 change: 1 addition & 0 deletions extensions/sample-template/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ buildscript {
}
}


apply plugin: "biz.aQute.bnd.builder"
apply plugin: "eclipse"
apply plugin: "java-library"
Expand Down

0 comments on commit 636508e

Please sign in to comment.