File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : " nightly build-jdk nightly "
1+ name : " run-aqa build with push to master "
22on :
33 push :
4- pull_request :
5- types : [opened, synchronize, reopened, ready_for_review]
4+
5+
66jobs :
7- hotspot14 :
7+ installJDK : # make sure build/ci work properly
88 runs-on : ${{ matrix.os }}
99 strategy :
1010 fail-fast : false
1111 matrix :
12- os : [windows-2016]
12+ os : [ubuntu-latest]#[ubuntu-latest, macos-latest, windows-2016]
1313 steps :
14- - uses : actions/checkout@v2
15- - name : Extract branch name
16- shell : bash
17- run : |
18- if ${{ github.event_name == 'pull_request' }}; then
19- echo "::set-output name=branch::$(echo ${GITHUB_HEAD_REF})"
20- echo "::set-output name=repo::$(echo ${{ github.event.pull_request.head.repo.full_name }})"
21- else
22- echo "::set-output name=branch::$(echo ${GITHUB_REF#refs/heads/})"
23- echo "::set-output name=repo::$(echo ${{ github.repository }})"
24- fi
25- id : extract_branch
26- - name : testing github.repository
27- run : echo ${{ github.repository }}
28- - name : Testing
29- run : |
30- echo " full name is ${{ github.event.pull_request.head.repo.full_name }} ref is ${GITHUB_HEAD_REF}"
31- echo " repo is ${{ steps.extract_branch.outputs.repo }} branch is ${{ steps.extract_branch.outputs.branch }}"
14+ - uses : actions/checkout@v1
15+ - uses : AdoptOpenJDK/install-jdk@v1
16+ with :
17+ version : ' 8'
18+ targets : ' JDK_8'
19+ # impl: 'openj9'
20+ source : ' nightly'
21+
22+ - name : AQA
23+ uses : AdoptOpenJDK/run-aqa@v1
24+ with :
25+ version : ' 8'
26+ jdksource : ' install-jdk'
27+ build_list : ' openjdk'
28+ target : ' _jdk_custom'
29+ custom_target : ' jdk/test/java/util/concurrent/forkjoin/AccessControlContext.java'
You can’t perform that action at this time.
0 commit comments