-
Notifications
You must be signed in to change notification settings - Fork 902
137 lines (118 loc) · 5.16 KB
/
ci.yml
File metadata and controls
137 lines (118 loc) · 5.16 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# 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.
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: CI
on:
push:
pull_request:
branches: [ "master" ]
env:
MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3
jobs:
docker-build:
runs-on: ubuntu-22.04
timeout-minutes: 180
steps:
- uses: actions/checkout@v6
- name: Delete huge unnecessary tools folder
run: rm -rf /opt/hostedtoolcache
- name: Cache for maven dependencies
uses: actions/cache@v5
with:
path: |
~/.m2/repository/*/*/*
!~/.m2/repository/org/apache/atlas
key: maven-repo-${{ hashFiles('**/pom.xml') }}
restore-keys: |
maven-repo-
- name: Set up .m2 directory and permissions
run: |
mkdir -p ~/.m2/repository
chmod -R 777 ~/.m2
chmod -R 777 ./
- name: Set up JDK 8
uses: actions/setup-java@v5
with:
java-version: '8'
distribution: 'temurin'
- name: Clean up Docker space
run: docker system prune --all --force --volumes
- name: Build Atlas - JDK 8
run: |
mvn -Pdist,embedded-solr-it -DskipTests=false -DskipDocs clean verify --no-transfer-progress -B -V
- name: Collect Atlas distribution tarballs
run: |
mkdir -p dev-support/atlas-docker/dist
ls -la distro/target || true
cp -f distro/target/apache-atlas-*-server.tar.gz dev-support/atlas-docker/dist/
cp -f distro/target/apache-atlas-*-hive-hook.tar.gz dev-support/atlas-docker/dist/
cp -f distro/target/apache-atlas-*-hbase-hook.tar.gz dev-support/atlas-docker/dist/
cp -f distro/target/apache-atlas-*-kafka-hook.tar.gz dev-support/atlas-docker/dist/
- name: Generate code coverage report
shell: bash
run: |
set -euo pipefail
./dev-support/checks/coverage.sh
mkdir -p dev-support/atlas-docker/dist
rm -rf dev-support/atlas-docker/dist/coverage || true
mv -f target/coverage dev-support/atlas-docker/dist/
- name: Upload Code Coverage Results
uses: actions/upload-artifact@v7
with:
name: coverage
path: dev-support/atlas-docker/dist/coverage/*
- name: Cache downloaded archives
if: success()
uses: actions/cache@v5
with:
path: dev-support/atlas-docker/downloads
key: ${{ runner.os }}-atlas-downloads-${{ hashFiles('dev-support/atlas-docker/.env') }}
restore-keys: |
${{ runner.os }}-atlas-downloads-
- name: Run download-archives.sh
run: |
cd dev-support/atlas-docker
chmod +x download-archives.sh && ./download-archives.sh
- name: Bring up containers
run: |
cd dev-support/atlas-docker
export DOCKER_BUILDKIT=1
export COMPOSE_DOCKER_CLI_BUILD=1
docker compose -f docker-compose.atlas-base.yml build
docker compose -f docker-compose.atlas.yml -f docker-compose.atlas-hadoop.yml -f docker-compose.atlas-hive.yml up -d --wait
- name: Check status of containers and remove them
run: |
containers=(atlas-zk atlas-solr atlas-kafka atlas-db atlas-hadoop atlas-hbase atlas-hive atlas);
flag=true;
for container in "${containers[@]}"; do
if [[ $(docker inspect -f '{{.State.Running}}' $container 2>/dev/null) == "true" ]]; then
echo "Container $container is running!";
else
flag=false;
echo "Container $container is NOT running!";
fi
done
if [[ $flag == true ]]; then
echo "All required containers are up and running";
docker stop $(docker ps -q) && docker rm $(docker ps -aq);
else
docker stop $(docker ps -q) && docker rm $(docker ps -aq);
exit 1;
fi