check_pr.yml 7.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
#
# Copyright (c) 2019 Alibaba Group Holding Limited. All Rights Reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Alibaba designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#

name: Dragonwell_8_build_test

on:
  pull_request:
    types: [opened, synchronize, reopened]

jobs:
  check_commit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: dragonwell-releng/check_commit_action@master

  build_release_jdk:
    runs-on: ubuntu-latest
    container:
      image: docker.io/dragonwelljdk/build_jdk:8u
    steps:
      - name: Check out alibaba/dragonwell8_hotspot
        uses: actions/checkout@v2
        with:
            path: 'hotspot'
      - name: Check out alibaba/dragonwell8_corba
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_corba'
          path: 'corba'
      - name: Check out alibaba/dragonwell8_langtools
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_langtools'
          path: 'langtools'
      - name: Check out alibaba/dragonwell8
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8'
          path: 'dragonwell8'
      - name: Check out alibaba/dragonwell8_jdk
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_jdk'
          path: 'jdk'
      - name: Check out alibaba/dragonwell8_jaxws
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_jaxws'
          path: 'jaxws'
      - name: Check out alibaba/dragonwell8_jaxp
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_jaxp'
          path: 'jaxp'
      - name: Check out alibaba/dragonwell8_nashorn
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_nashorn'
          path: 'nashorn'

      - name: Compile release mode
        run: |
          mv hotspot dragonwell8
          mv langtools dragonwell8
          mv jdk dragonwell8
          mv corba dragonwell8
          mv jaxp dragonwell8
          mv jaxws dragonwell8
          mv nashorn dragonwell8
          cd dragonwell8
          sh configure --with-debug-level=release --with-cacerts-file=${PWD}/common/security/cacerts --with-milestone=fcs --enable-unlimited-crypto
          make LOG=trace images

      - name: Sanity test
        run: |
          cd dragonwell8
          TEST_JDK_HOME=build/linux-x86_64-normal-server-release/images/j2sdk-image
          ${TEST_JDK_HOME}/bin/java -version

          #- name: Tier1 test
          #run: |
          #make test TEST="hotspot_tier1 jdk_tier1"

Y
yunyao.zxl 已提交
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
  build_fastdebug_jdk:
    runs-on: ubuntu-latest
    container:
      image: docker.io/dragonwelljdk/build_jdk:8u
    steps:
      - name: Check out alibaba/dragonwell8_hotspot
        uses: actions/checkout@v2
        with:
            path: 'hotspot'
      - name: Check out alibaba/dragonwell8_corba
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_corba'
          path: 'corba'
      - name: Check out alibaba/dragonwell8_langtools
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_langtools'
          path: 'langtools'
      - name: Check out alibaba/dragonwell8
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8'
          path: 'dragonwell8'
      - name: Check out alibaba/dragonwell8_jdk
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_jdk'
          path: 'jdk'
      - name: Check out alibaba/dragonwell8_jaxws
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_jaxws'
          path: 'jaxws'
      - name: Check out alibaba/dragonwell8_jaxp
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_jaxp'
          path: 'jaxp'
      - name: Check out alibaba/dragonwell8_nashorn
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_nashorn'
          path: 'nashorn'

      - name: Compile fastdebug mode
        run: |
          mv hotspot dragonwell8
          mv langtools dragonwell8
          mv jdk dragonwell8
          mv corba dragonwell8
          mv jaxp dragonwell8
          mv jaxws dragonwell8
          mv nashorn dragonwell8
          cd dragonwell8
          sh configure --with-debug-level=fastdebug --with-cacerts-file=${PWD}/common/security/cacerts --with-milestone=fcs --enable-unlimited-crypto
          make LOG=trace images

      - name: Sanity test
        run: |
          cd dragonwell8
          TEST_JDK_HOME=build/linux-x86_64-normal-server-fastdebug/images/j2sdk-image
          ${TEST_JDK_HOME}/bin/java -version

          #- name: Tier1 test
          #run: |
          #make test TEST="hotspot_tier1 jdk_tier1"

171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
  build_slowdebug_jdk:
    runs-on: ubuntu-latest
    container:
      image: docker.io/dragonwelljdk/build_jdk:8u
    steps:
      - name: Check out alibaba/dragonwell8_hotspot
        uses: actions/checkout@v2
        with:
          path: 'hotspot'
      - name: Check out alibaba/dragonwell8_corba
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_corba'
          path: 'corba'
      - name: Check out alibaba/dragonwell8_langtools
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_langtools'
          path: 'langtools'
      - name: Check out alibaba/dragonwell8
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8'
          path: 'dragonwell8'
      - name: Check out alibaba/dragonwell8_jdk
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_jdk'
          path: 'jdk'
      - name: Check out alibaba/dragonwell8_jaxws
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_jaxws'
          path: 'jaxws'
      - name: Check out alibaba/dragonwell8_jaxp
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_jaxp'
          path: 'jaxp'
      - name: Check out alibaba/dragonwell8_nashorn
        uses: actions/checkout@v2
        with:
          repository: 'alibaba/dragonwell8_nashorn'
          path: 'nashorn'

      - name: Compile slowdebug mode
        run: |
          mv hotspot dragonwell8
          mv langtools dragonwell8
          mv jdk dragonwell8
          mv corba dragonwell8
          mv jaxp dragonwell8
          mv jaxws dragonwell8
          mv nashorn dragonwell8
          cd dragonwell8
          sh configure --with-debug-level=slowdebug --with-cacerts-file=${PWD}/common/security/cacerts --with-milestone=fcs --enable-unlimited-crypto

          make LOG=trace images

      - name: Sanity test
        run: |
          cd dragonwell8
          TEST_JDK_HOME=build/linux-x86_64-normal-server-slowdebug/images/j2sdk-image
          ${TEST_JDK_HOME}/bin/java -version

          # - name: Tier1 test
          #  run: |
          #    make test TEST="hotspot_tier1 jdk_tier1"