mirror of
https://github.com/apache/druid.git
synced 2025-02-09 19:44:57 +00:00
* update static-checks GHA to run sequentially remove static-checks from travis.yml move docs, web-console, packaging checks from travis to GHA * nit * nit * groups all checks, runs on 8, 11, 17 jdks * nit * adds license info * update permissions on scripts folder * nit * nit * fix packaging check * changes naming, cleans repo before license checks * simulate failure * bump up license checks * test license checks failure * test license checks failure * test license checks failure * verify gha script run exit code * fail fast in case of shell script * verified fail fast in case of shell script
24 lines
1009 B
Bash
Executable File
24 lines
1009 B
Bash
Executable File
# 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.
|
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
sudo apt-get update && sudo apt-get install python3 -y
|
|
curl https://bootstrap.pypa.io/pip/3.5/get-pip.py | sudo -H python3
|
|
pip3 install wheel # install wheel first explicitly
|
|
pip3 install --upgrade pyyaml
|