< prev index next >

.github/workflows/main.yml

Print this page

 10 #
 11 # This code is distributed in the hope that it will be useful, but WITHOUT
 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 14 # version 2 for more details (a copy is included in the LICENSE file that
 15 # accompanied this code).
 16 #
 17 # You should have received a copy of the GNU General Public License version
 18 # 2 along with this work; if not, write to the Free Software Foundation,
 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 20 #
 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 22 # or visit www.oracle.com if you need additional information or have any
 23 # questions.
 24 #
 25 
 26 name: 'OpenJDK GHA Sanity Checks'
 27 
 28 on:
 29   push:
 30     branches-ignore:
 31       - pr/*



 32   workflow_dispatch:
 33     inputs:
 34       platforms:
 35         description: 'Platform(s) to execute on (comma separated, e.g. "linux-x64, macos, aarch64")'
 36         required: true
 37         default: 'linux-x64, linux-x64-variants, linux-cross-compile, alpine-linux-x64, macos-x64, macos-aarch64, windows-x64, windows-aarch64, docs'
 38       configure-arguments:
 39         description: 'Additional configure arguments'
 40         required: false
 41       make-arguments:
 42         description: 'Additional make arguments'
 43         required: false
 44       dry-run:
 45         description: 'Dry run: skip actual builds and tests'
 46         required: false
 47 
 48 concurrency:
 49   group: ${{ github.workflow }}-${{ github.ref }}
 50   cancel-in-progress: true
 51 

 10 #
 11 # This code is distributed in the hope that it will be useful, but WITHOUT
 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 14 # version 2 for more details (a copy is included in the LICENSE file that
 15 # accompanied this code).
 16 #
 17 # You should have received a copy of the GNU General Public License version
 18 # 2 along with this work; if not, write to the Free Software Foundation,
 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 20 #
 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 22 # or visit www.oracle.com if you need additional information or have any
 23 # questions.
 24 #
 25 
 26 name: 'OpenJDK GHA Sanity Checks'
 27 
 28 on:
 29   push:
 30     branches:
 31       - develop
 32   pull_request:
 33     branches:
 34       - develop
 35   workflow_dispatch:
 36     inputs:
 37       platforms:
 38         description: 'Platform(s) to execute on (comma separated, e.g. "linux-x64, macos, aarch64")'
 39         required: true
 40         default: 'linux-x64, linux-x64-variants, linux-cross-compile, alpine-linux-x64, macos-x64, macos-aarch64, windows-x64, windows-aarch64, docs'
 41       configure-arguments:
 42         description: 'Additional configure arguments'
 43         required: false
 44       make-arguments:
 45         description: 'Additional make arguments'
 46         required: false
 47       dry-run:
 48         description: 'Dry run: skip actual builds and tests'
 49         required: false
 50 
 51 concurrency:
 52   group: ${{ github.workflow }}-${{ github.ref }}
 53   cancel-in-progress: true
 54 
< prev index next >