2020-02-24 20:11:27 +08:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2020-03-05 11:33:24 +08:00
|
|
|
on: ["pull_request"]
|
2020-02-24 20:11:27 +08:00
|
|
|
env:
|
|
|
|
DOCKER_DIR: ./docker
|
|
|
|
LOG_DIR: /tmp/dolphinscheduler
|
|
|
|
|
|
|
|
name: e2e Test
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
name: Test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
2020-03-02 15:02:17 +08:00
|
|
|
- uses: actions/checkout@v2
|
2020-02-24 20:11:27 +08:00
|
|
|
- uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.m2/repository
|
|
|
|
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-maven-
|
|
|
|
- name: Build Image
|
2020-02-24 20:43:31 +08:00
|
|
|
run: |
|
|
|
|
export VERSION=`cat $(pwd)/pom.xml| grep "SNAPSHOT</version>" | awk -F "-SNAPSHOT" '{print $1}' | awk -F ">" '{print $2}'`
|
|
|
|
sh ./dockerfile/hooks/build
|
2020-02-24 20:11:27 +08:00
|
|
|
- name: Docker Run
|
2020-02-24 20:43:31 +08:00
|
|
|
run: |
|
|
|
|
VERSION=`cat $(pwd)/pom.xml| grep "SNAPSHOT</version>" | awk -F "-SNAPSHOT" '{print $1}' | awk -F ">" '{print $2}'`
|
|
|
|
docker run -dit -e POSTGRESQL_USERNAME=test -e POSTGRESQL_PASSWORD=test -p 8888:8888 dolphinscheduler:$VERSION all
|
2020-02-24 20:11:27 +08:00
|
|
|
- name: Check Server Status
|
|
|
|
run: sh ./dockerfile/hooks/check
|
2020-02-27 09:51:25 +08:00
|
|
|
- name: Prepare e2e env
|
|
|
|
run: |
|
|
|
|
sudo apt-get install -y libxss1 libappindicator1 libindicator7 xvfb unzip
|
|
|
|
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
|
|
|
sudo dpkg -i google-chrome*.deb
|
|
|
|
sudo apt-get install -f -y
|
|
|
|
wget -N https://chromedriver.storage.googleapis.com/80.0.3987.106/chromedriver_linux64.zip
|
|
|
|
unzip chromedriver_linux64.zip
|
|
|
|
sudo mv -f chromedriver /usr/local/share/chromedriver
|
|
|
|
sudo ln -s /usr/local/share/chromedriver /usr/local/bin/chromedriver
|
2020-02-24 20:11:27 +08:00
|
|
|
- name: Run e2e Test
|
2020-02-27 09:51:25 +08:00
|
|
|
run: cd ./e2e && mvn -B clean test
|
2020-02-24 20:11:27 +08:00
|
|
|
- name: Collect logs
|
|
|
|
run: |
|
|
|
|
mkdir -p ${LOG_DIR}
|
|
|
|
docker logs dolphinscheduler > ${LOG_DIR}/dolphinscheduler.txt
|
|
|
|
continue-on-error: true
|