mirror of
https://gitee.com/iresty/apisix.git
synced 2024-12-14 17:01:20 +08:00
c65f5c9465
fix #638 Co-authored-by: liuheng <liuhengloveyou@gmail.com>
84 lines
2.6 KiB
YAML
84 lines
2.6 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform: [ubuntu-18.04]
|
|
os_name: [linux_openresty, linux_tengine, linux_apisix_master_luarocks, linux_apisix_current_luarocks, linux_openresty_mtls]
|
|
include:
|
|
- platform: macos-latest
|
|
os_name: osx_openresty
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
env:
|
|
SERVER_NAME: ${{ matrix.os_name }}
|
|
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
#----------------------------------------------------------------------------
|
|
- name: Linux Get dependencies
|
|
if: matrix.platform == 'ubuntu-18.04'
|
|
run: sudo apt install -y cpanminus build-essential libncurses5-dev libreadline-dev libssl-dev perl etcd
|
|
|
|
- name: Linux Before install
|
|
if: matrix.platform == 'ubuntu-18.04'
|
|
run: sudo ./.travis/${{ matrix.os_name }}_runner.sh before_install
|
|
|
|
- name: Install Redis Cluster
|
|
if: matrix.os_name == 'linux_openresty'
|
|
uses: vishnudxb/redis-cluster@1.0.5
|
|
with:
|
|
master1-port: 5000
|
|
master2-port: 5001
|
|
master3-port: 5002
|
|
slave1-port: 5003
|
|
slave2-port: 5004
|
|
slave3-port: 5005
|
|
|
|
- name: Running Redis Cluster Test
|
|
if: matrix.os_name == 'linux_openresty'
|
|
run: |
|
|
sudo apt-get install -y redis-tools
|
|
docker ps -a
|
|
redis-cli -h 127.0.0.1 -p 5000 ping
|
|
redis-cli -h 127.0.0.1 -p 5000 cluster nodes
|
|
|
|
- name: Linux Install
|
|
if: matrix.platform == 'ubuntu-18.04'
|
|
run: sudo ./.travis/${{ matrix.os_name }}_runner.sh do_install
|
|
|
|
- name: Linux Script
|
|
if: matrix.platform == 'ubuntu-18.04'
|
|
run: sudo ./.travis/${{ matrix.os_name }}_runner.sh script
|
|
|
|
# - name: Linux After success
|
|
# if: matrix.platform == 'ubuntu-18.04'
|
|
# run: sudo ./.travis/${{ matrix.os_name }}_runner.sh after_success
|
|
#----------------------------------------------------------------------------
|
|
- name: MacOS Before install
|
|
if: matrix.platform == 'macos-latest'
|
|
run: ./.travis/${{ matrix.os_name }}_runner.sh before_install
|
|
|
|
- name: MacOS Install
|
|
if: matrix.platform == 'macos-latest'
|
|
run: ./.travis/${{ matrix.os_name }}_runner.sh do_install
|
|
|
|
- name: MacOS Script
|
|
if: matrix.platform == 'macos-latest'
|
|
run: ./.travis/${{ matrix.os_name }}_runner.sh script
|
|
|
|
# - name: MacOS After success
|
|
# if: matrix.platform == 'macos-latest'
|
|
# run: ./.travis/${{ matrix.os_name }}_runner.sh after_success
|