WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Security: Fix 4 vulnerable packages #112

Security: Fix 4 vulnerable packages

Security: Fix 4 vulnerable packages #112

Workflow file for this run

#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
name: Pinot Tests
on:
pull_request:
branches: [ master ]
paths-ignore:
- "docs/**"
- "licenses/**"
- "licenses-binary/**"
- "website/**"
- "**.md"
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Unit Test
env:
RUN_INTEGRATION_TESTS: false
run: .github/workflows/scripts/.pinot_test.sh
- name: Upload coverage to Codecov
run: |
bash <(curl -s https://codecov.io/bash) -cF unittests
integration-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Integration Test
env:
RUN_INTEGRATION_TESTS: true
run: .github/workflows/scripts/.pinot_test.sh
- name: Upload coverage to Codecov
run: |
bash <(curl -s https://codecov.io/bash) -cF integration
quickstarts:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 1.8, 10, 11, 12, 13, 14, 15-ea ]
name: Pinot Quickstart on JDK ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Quickstart on JDK ${{ matrix.java }}
run: .github/workflows/scripts/.pinot_quickstart.sh