From d800c5a0df04e9712f82aa3028329237f53189ea Mon Sep 17 00:00:00 2001 From: muhammad-ammar Date: Tue, 16 Jul 2024 00:18:33 +0500 Subject: [PATCH] fix: migrations --- .github/workflows/mysql8-migrations.yml | 76 +++++++++++++++++++ CHANGELOG.rst | 4 + enterprise_data/__init__.py | 2 +- ...nerenrollment_enterprise_enrollment_id.py} | 15 ++-- enterprise_data/settings/test.py | 17 ++--- 5 files changed, 99 insertions(+), 15 deletions(-) create mode 100644 .github/workflows/mysql8-migrations.yml rename enterprise_data/migrations/{0040_auto_20240712_0740.py => 0040_auto_20240718_0536_squashed_0043_alter_enterpriselearnerenrollment_enterprise_enrollment_id.py} (85%) diff --git a/.github/workflows/mysql8-migrations.yml b/.github/workflows/mysql8-migrations.yml new file mode 100644 index 00000000..fe389b79 --- /dev/null +++ b/.github/workflows/mysql8-migrations.yml @@ -0,0 +1,76 @@ +name: Migrations check on mysql8 + +on: + workflow_dispatch: + pull_request: + push: + branches: + - master + +jobs: + check_migrations: + name: check migrations + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ ubuntu-20.04 ] + python-version: [ 3.8 ] + + steps: + - name: Checkout repo + uses: actions/checkout@v2 + + - name: Setup Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + + - name: Install system Packages + run: | + sudo apt-get update + - name: Get pip cache dir + id: pip-cache-dir + run: | + echo "::set-output name=dir::$(pip cache dir)" + - name: Cache pip dependencies + id: cache-dependencies + uses: actions/cache@v2 + with: + path: ${{ steps.pip-cache-dir.outputs.dir }} + key: ${{ runner.os }}-pip-${{ hashFiles('requirements/pip_tools.txt') }} + restore-keys: ${{ runner.os }}-pip- + + - name: Ubuntu and sql Versions + run: | + lsb_release -a + mysql -V + - name: Install Python dependencies + run: | + pip install -r requirements/dev.txt + pip uninstall -y mysqlclient + pip install --no-binary mysqlclient mysqlclient + - name: Initiate Services + run: | + sudo /etc/init.d/mysql start + - name: Reset mysql password + run: | + cat <