blob: eb8084285b14f8796be1221a28213984d7175f5b [file] [log] [blame]
#!/usr/bin/env python
# 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.
import os
import sys
from pathlib import Path
if __name__ not in ("__main__", "__mp_main__"):
raise SystemExit(
"This file is intended to be executed as an executable program. You cannot use it as a module."
f"To run this script, run the ./{__file__} command"
)
AIRFLOW_SOURCES = Path(__file__).parents[3].resolve()
# allow "False", "false", "True", "true", "f", "F", "t", "T" and the like
VERBOSE = os.environ.get('VERBOSE', "false")[0].lower() == "t"
DRY_RUN = os.environ.get('DRY_RUN', "false")[0].lower() == "t"
if __name__ == '__main__':
sys.path.insert(0, str(AIRFLOW_SOURCES / "dev" / "breeze" / "src"))
from airflow_breeze.global_constants import MOUNT_SELECTED
from airflow_breeze.utils.docker_command_utils import get_extra_docker_flags
from airflow_breeze.utils.path_utils import create_static_check_volumes
from airflow_breeze.utils.run_utils import get_runnable_ci_image, run_command
airflow_image = get_runnable_ci_image(verbose=VERBOSE, dry_run=DRY_RUN)
create_static_check_volumes()
cmd_result = run_command(
[
"docker",
"run",
"-t",
*get_extra_docker_flags(MOUNT_SELECTED),
"-e",
"SKIP_ENVIRONMENT_INITIALIZATION=true",
"-e",
"PRINT_INFO_FROM_SCRIPTS=false",
"--pull",
"never",
airflow_image,
"-c",
'cd airflow/ui && yarn --frozen-lockfile --non-interactive && yarn run lint',
],
check=False,
verbose=VERBOSE,
dry_run=DRY_RUN,
)
sys.exit(cmd_result.returncode)