chore(ci): clean test matrix #832
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push, pull_request] | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
include: | |
# TODO: arm64 | |
- openresty: "1.21.4.3" | |
- openresty: "1.25.3.1" | |
env: | |
JOBS: 1 # must be 1 as socket tests interfere with each other | |
OPENRESTY: ${{ matrix.openresty }} | |
CODE_PATH: ${{ github.workspace }} | |
BASE_PATH: /home/runner/work/cache | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
with: | |
submodules: 'true' | |
- name: Setup cache | |
uses: actions/cache@v2 | |
id: cache-deps | |
with: | |
path: | | |
/home/runner/work/cache | |
key: ${{ runner.os }}-${{ hashFiles('**/tests.yml') }}-${{ hashFiles('**/*.c', '**/*.h') }}-openresty-${{ matrix.openresty }} | |
- name: Install packages | |
run: | | |
sudo apt update | |
sudo apt-get install -qq -y wget cpanminus net-tools libpcre3-dev build-essential valgrind | |
if [ ! -e perl ]; then sudo cpanm --notest Test::Nginx > build.log 2>&1 || (cat build.log && exit 1); cp -r /usr/local/share/perl/ .; else sudo cp -r perl /usr/local/share; fi | |
- name: Download OpenResty | |
if: steps.cache-deps.outputs.cache-hit != 'true' | |
run: | | |
wget https://openresty.org/download/openresty-${OPENRESTY}.tar.gz | |
mkdir -p ${BASE_PATH} | |
tar xfz openresty-${OPENRESTY}.tar.gz -C ${BASE_PATH} | |
- name: Setup tools | |
if: steps.cache-deps.outputs.cache-hit != 'true' | |
run: | | |
cd ${BASE_PATH}/openresty-${OPENRESTY} | |
./configure --prefix=${BASE_PATH}/openresty --with-debug --add-module=${CODE_PATH} | |
make && make install | |
- name: Run Test | |
run: | | |
export PATH=${BASE_PATH}/openresty/bin:$PATH | |
openresty -V | |
make test OPENRESTY_PREFIX=${BASE_PATH}/openresty |