use installed version of userver if any #239
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': | |
schedule: | |
- cron: '30 5 * * 1' # Every Monday at 5:30 | |
pull_request: | |
push: | |
branches: | |
- develop | |
env: | |
UBSAN_OPTIONS: print_stacktrace=1 | |
jobs: | |
posix: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-20.04 | |
make: test-debug | |
info: g++-9 + test-debug | |
- os: ubuntu-20.04 | |
make: test-release | |
info: g++-9 + test-release | |
name: '${{matrix.os}}: ${{matrix.info}}' | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Reuse ccache directory | |
uses: actions/cache@v2 | |
with: | |
path: ~/.ccache | |
key: '${{matrix.os}} ${{matrix.info}} ccache-dir ${{github.ref}} run-${{github.run_number}}' | |
restore-keys: | | |
${{matrix.os}} ${{matrix.info}} ccache-dir ${{github.ref}} run-' | |
${{matrix.os}} ${{matrix.info}} ccache- | |
- name: Install packages | |
run: | | |
(cd third_party && git clone -b develop --single-branch --depth 1 https://github.com/userver-framework/userver.git) | |
sudo apt update | |
sudo apt install --allow-downgrades -y pycodestyle postgresql $(cat third_party/userver/scripts/docs/en/deps/${{matrix.os}}.md | tr '\n' ' ') | |
- name: Setup ccache | |
run: | | |
ccache -M 2.0GB | |
ccache -s | |
- name: Run postgresql | |
if: matrix.make == 'test-release' | |
run: | | |
sudo service postgresql@14-main stop | |
sudo service postgresql@12-main stop | |
sudo sed -i 's/5433/5432/g' /etc/postgresql/12/main/postgresql.conf | |
sudo sed -i 's/5432/5433/g' /etc/postgresql/14/main/postgresql.conf | |
sudo service postgresql stop | |
sudo service postgresql@12-main restart | |
pg_lsclusters | |
sudo -u postgres psql --command="CREATE USER uservice_dynconf PASSWORD 'password'" --command="\du" | |
sudo -u postgres createdb --owner=uservice_dynconf uservice_dynconf | |
- name: Run migrations | |
if: matrix.make == 'test-release' | |
run: | | |
PGPASSWORD=password psql 'postgresql://uservice_dynconf@localhost:5432/uservice_dynconf' -f ./postgresql/schemas/uservice_dynconf.sql | |
- name: Run ${{matrix.make}} | |
run: | | |
make ${{matrix.make}} | |
- name: Test install ${{matrix.make}} | |
if: matrix.make == 'test-release' | |
run: | | |
make dist-clean | |
make install PREFIX=`pwd`/local_installation/ | |
- name: Test run after install | |
if: matrix.make == 'test-release' | |
run: >- | |
./local_installation/bin/uservice-dynconf | |
--config=./local_installation/etc/uservice-dynconf/static_config.yaml | |
--config_vars=./local_installation/etc/uservice-dynconf/config_vars.yaml | |
& | |
- name: Check work run service | |
if: matrix.make == 'test-release' | |
run: | | |
ps aux | grep uservice-dynconf | grep config && curl http://localhost:8083/ping -v | |
- name: Stop all | |
if: matrix.make == 'test-release' | |
run: | | |
killall uservice-dynconf | |
sudo service postgresql stop |