From 1156c62014f275613ed0b02d70677dbdfc605c25 Mon Sep 17 00:00:00 2001 From: Awais Qureshi Date: Fri, 11 Feb 2022 18:57:44 +0500 Subject: [PATCH] migrations check mysql8 (#29784) * build: Adding migrations check for mysql8. --- .github/workflows/migrations-check-mysql8.yml | 81 +++++++++++++++++++ .github/workflows/migrations-check.yml | 2 +- 2 files changed, 82 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/migrations-check-mysql8.yml diff --git a/.github/workflows/migrations-check-mysql8.yml b/.github/workflows/migrations-check-mysql8.yml new file mode 100644 index 0000000000..0e61699eae --- /dev/null +++ b/.github/workflows/migrations-check-mysql8.yml @@ -0,0 +1,81 @@ +name: Migrations check on MySql 8.0 + +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 + sudo apt-get install -y libxmlsec1-dev + + - 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/edx/development.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/pip.txt + pip install -r requirements/edx/development.txt + pip uninstall -y mysqlclient + pip install --no-binary mysqlclient mysqlclient + pip uninstall -y xmlsec + pip install --no-binary xmlsec xmlsec + + - name: Initiate Services + run: | + sudo systemctl start mongod + sudo /etc/init.d/mysql start + + - name: Reset mysql password + run: | + cat <