Skip to content

Commit 32ee9d8

Browse files
committed
Testing jdk/test/java/util/concurrent/forkjoin/AccessControlContext.java
Signed-off-by: Sophia Guo <sophia.gwf@gmail.com>
1 parent fe4599b commit 32ee9d8

1 file changed

Lines changed: 22 additions & 23 deletions

File tree

.github/workflows/test.yml

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,30 @@
1-
name: "nightly build-jdk nightly"
1+
name: "run-aqa build with push to master"
22
on:
33
push:
4-
pull_request:
5-
types: [opened, synchronize, reopened, ready_for_review]
4+
5+
66
jobs:
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: 'https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u-2020-12-02-12-32/OpenJDK8U-jdk_x64_linux_hotspot_2020-12-02-12-32.tar.gz'
21+
sourceType: 'url'
22+
23+
- name: AQA
24+
uses: AdoptOpenJDK/run-aqa@v1
25+
with:
26+
version: '8'
27+
jdksource: 'install-jdk'
28+
build_list: 'openjdk'
29+
target: '_jdk_custom'
30+
custom_target: 'jdk/test/java/util/concurrent/forkjoin/AccessControlContext.java'

0 commit comments

Comments
 (0)