check_pr.yml 2.5 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
#
# 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_11_build_test

on: [pull_request]

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:11u
    steps:
      - uses: actions/checkout@v2
      - name: Compile release mode
        run: |
          chmod 755 configure
          bash make.sh release

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

Y
yunyao.zxl 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
  build_fastdebug_jdk:
    runs-on: ubuntu-latest
    container:
      image: docker.io/dragonwelljdk/build_jdk:11u
    steps:
      - uses: actions/checkout@v2
      - name: Compile fastdebug mode
        run: |
          chmod 755 configure
          bash make.sh fastdebug

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

65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
  build_slowdebug_jdk:
    runs-on: ubuntu-latest
    container:
      image: docker.io/dragonwelljdk/build_jdk:11u
    steps:
      - uses: actions/checkout@v2
      - name: Compile slowdebug mode
        run: |
          chmod 755 configure
          bash make.sh debug

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