Skip to content

Commit 816900d

Browse files
committed
PR testing
Signed-off-by: Sophia Guo <sophia.gwf@gmail.com>
1 parent 79fa337 commit 816900d

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/test.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,26 @@ name: "run-aqa build with push to master"
22
on:
33
push:
44

5-
65
jobs:
76
hotspot:
87
runs-on: ${{ matrix.os }}
98
strategy:
109
fail-fast: false
1110
matrix:
12-
os: [ubuntu-16.04]
11+
os: [windows-2019]
1312
javaToBuild: [jdk16u]
1413
steps:
1514
- uses: actions/checkout@v1
16-
- uses: sophia-guo/build-openj9@PR
17-
id: buildJDK
18-
with:
19-
version: 16
20-
usePersonalRepo: true
21-
openj9Repo: sophia-guo/openj9:demo
22-
- run: ${{ steps.buildJDK.outputs.BuildJDKDir }}/bin/java -version
23-
- uses: actions/upload-artifact@v2
24-
if: failure()
25-
with:
26-
name: logfilet
27-
path: ./**/config.log/
15+
- run: |
16+
echo "test GITHUB_WORKSPACE ${GITHUB_WORKSPACE}}"
17+
echo " tests HOME ${HOME}"
18+
- name: Install Cygwin
19+
run: |
20+
New-Item -Path C:\ -Name 'openjdk' -ItemType 'directory'
21+
Invoke-WebRequest -UseBasicParsing 'https://cygwin.com/setup-x86_64.exe' -OutFile 'C:\temp\cygwin.exe'
22+
Start-Process -Wait -FilePath 'C:\temp\cygwin.exe' -ArgumentList '--packages autoconf,automake,bsdtar,cpio,curl,gcc-core,git,gnupg,grep,libtool,make,mingw64-x86_64-gcc-core,perl,rsync,unzip,wget,zip --quiet-mode --download --local-install --delete-orphans --site https://mirrors.kernel.org/sourceware/cygwin/ --local-package-dir C:\cygwin_packages --root C:\cygwin64'
23+
- run: |
24+
printenv
25+
ls
26+
27+

0 commit comments

Comments
 (0)