test with mariadb 10.4 #47
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 | |
env: | |
MARIADB_DATABASE: panthera_test | |
MARIADB_USER: root | |
MARIADB_PASSWORD: test_password | |
MARIADB_HOST: mariadb_master | |
PIP_ROOT_USER_ACTION: ignore | |
on: [push] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] | |
container: | |
image: mariadb:11 | |
services: | |
mariadb-master: | |
image: mariadb:10.4 | |
env: | |
MARIADB_USER: test_user | |
MARIADB_PASSWORD: test_password | |
MARIADB_ROOT_PASSWORD: test_password | |
ports: | |
- 3306/tcp | |
options: >- | |
--name=mariadb_master | |
--health-cmd="mysqladmin ping" | |
--health-interval=10s | |
--health-timeout=5s | |
--health-retries=3 | |
env: | |
PYTHONPATH : ../src/:$PYTHONPATH | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: whoami | |
- run: ps ax | |
- run: pwd | |
- run: apt update | |
- run: apt upgrade -y | |
- run: apt install mariadb-client | |
- run: apt install libmariadb-dev -y | |
- run: apt install build-essential -y | |
- run: apt install git -y | |
- run: ls /etc/apt/ | |
- run: cat /etc/apt/sources.list | |
- run: ls /etc/apt/sources.list.d/ | |
- run: echo 'SHOW DATABASES;' |mariadb -h mariadb-master -u root --password=test_password | |
- run: echo 'CREATE DATABASE `panthera_test`;' |mariadb -h mariadb-master -u root --password=test_password | |
- run: echo 'SHOW DATABASES;' |mariadb -h mariadb-master -u root --password=test_password | |
- run: ls | |
- run: python -m pip install --upgrade pip | |
- run: python -m pip install --upgrade build | |
- run: python -m pip install -e . | |
- run: cd test ; python3 ../src/openPanthera/cli.py help | |
- run: cd test ; python3 ../src/openPanthera/cli.py df | |
- run: cd test ; python3 ../src/openPanthera/cli.py dc | |
- run: cd test ; python3 ../src/openPanthera/cli.py ms | |
- run: cd test ; python3 ../src/openPanthera/cli.py bt | |
- run: echo 'USE panthera_test; SHOW TABLES;' |mariadb -h $MARIADB_HOST -u root --password=$MARIADB_PASSWORD | |
- run: cd test ; python3 ../src/openPanthera/cli.py xx | |
- run: cd test ; git clone https://github.com/Soldy/note_db.git | |
- run: cd test ; git clone https://github.com/Soldy/text_db.git | |
- run: python3 -m build --sdist |