postgresql: remove version strings #112
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: CI | |
on: [push, pull_request] | |
jobs: | |
build1: | |
name: build_group1 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: | |
- cgit | |
- clr-installer-ci | |
- golang | |
- haproxy | |
- httpd | |
- iperf | |
- machine-learning-ui | |
- mariadb | |
- memcached | |
- mixer-ci | |
- nginx | |
- node | |
- openjdk/8 | |
- openjdk/13 | |
- os-core | |
- perl | |
- php | |
- php-fpm | |
- postgres | |
- python | |
- rabbitmq | |
- redis | |
- ruby | |
steps: | |
- uses: actions/checkout@v1 | |
- name: install | |
run: | | |
sudo apt-get install bats -f | |
sudo modprobe -r overlay | |
sudo modprobe overlay redirect_dir=off | |
sudo systemctl restart docker | |
- name: run test | |
run: | | |
dir=$(pwd) | |
cd ${{matrix.node}} | |
docker build -t clearlinux/${{matrix.node}} . | |
cd $dir | |
if [ -d "./tests/${{matrix.node}}" ]; then cd tests; make ${{matrix.node}}; fi |