Skip to content

Commit

Permalink
Temporary CI Fix (#117)
Browse files Browse the repository at this point in the history
* Fix Syntax for moodle-plugin-ci: Provide path to plugin source as last argument

* Temporary fix for CI moodlehq/moodle-plugin-ci#310
  • Loading branch information
JayBraker authored Aug 22, 2024
1 parent 5129d90 commit c17a2c2
Showing 1 changed file with 44 additions and 25 deletions.
69 changes: 44 additions & 25 deletions .github/workflows/moodle-plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

services:
postgres:
Expand All @@ -15,11 +15,14 @@ jobs:
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3

mariadb:
image: mariadb:10.6
image: mariadb:10
env:
MYSQL_USER: 'root'
MYSQL_ALLOW_EMPTY_PASSWORD: "true"
MYSQL_CHARACTER_SET_SERVER: "utf8mb4"
MYSQL_COLLATION_SERVER: "utf8mb4_unicode_ci"
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 3
Expand Down Expand Up @@ -96,6 +99,8 @@ jobs:
php-version: ${{ matrix.php }}
extensions: ${{ matrix.extensions }}
ini-values: max_input_vars=5000
# If you are not using code coverage, keep "none". Otherwise, use "pcov" (Moodle 3.10 and up) or "xdebug".
# If you try to use code coverage with "none", it will fallback to phpdbg (which has known problems).
coverage: none

- name: Initialise moodle-plugin-ci
Expand All @@ -104,11 +109,11 @@ jobs:
echo $(cd ci/bin; pwd) >> $GITHUB_PATH
echo $(cd ci/vendor/bin; pwd) >> $GITHUB_PATH
sudo locale-gen en_AU.UTF-8
echo "NVM_DIR=$HOME/.nvm" >> $GITHUB_ENV
# echo "NVM_DIR=$HOME/.nvm" >> $GITHUB_ENV
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
- name: Install moodle-plugin-ci
run: |
moodle-plugin-ci install --plugin ./plugin --db-host=127.0.0.1
run: moodle-plugin-ci install --plugin ./plugin --db-host=127.0.0.1
env:
DB: ${{ matrix.database }}
MOODLE_BRANCH: ${{ matrix.moodle-branch }}
Expand All @@ -117,42 +122,56 @@ jobs:
PHPDOCCHECKER_IGNORE_PATHS: classes/vendor

- name: PHP Lint
if: ${{ always() }}
run: moodle-plugin-ci phplint
if: ${{ !cancelled() }}
run: moodle-plugin-ci phplint ./plugin

- name: PHP Mess Detector
continue-on-error: true # This step will show errors but will not fail
if: ${{ always() }}
run: moodle-plugin-ci phpmd
if: ${{ !cancelled() }}
run: moodle-plugin-ci phpmd ./plugin

- name: Moodle Code Checker
if: ${{ always() }}
run: moodle-plugin-ci codechecker --max-warnings 0 || true
if: ${{ !cancelled() }}
run: moodle-plugin-ci codechecker --max-warnings 0 ./plugin || true

- name: Moodle PHPDoc Checker
if: ${{ always() }}
run: moodle-plugin-ci phpdoc || true
if: ${{ !cancelled() }}
run: moodle-plugin-ci phpdoc --max-warnings 0 ./plugin || true

- name: Validating
if: ${{ always() }}
run: moodle-plugin-ci validate
if: ${{ !cancelled() }}
run: moodle-plugin-ci validate ./plugin

- name: Check upgrade savepoints
if: ${{ always() }}
run: moodle-plugin-ci savepoints
if: ${{ !cancelled() }}
run: moodle-plugin-ci savepoints ./plugin

- name: Mustache Lint
if: ${{ always() }}
run: moodle-plugin-ci mustache || true
if: ${{ !cancelled() }}
run: moodle-plugin-ci mustache ./plugin || true

- name: Grunt
if: ${{ always() }}
run: moodle-plugin-ci grunt || true
if: ${{ !cancelled() }}
run: moodle-plugin-ci grunt ./plugin || true

- name: PHPUnit tests
if: ${{ always() }}
run: moodle-plugin-ci phpunit --coverage-text || true
if: ${{ !cancelled() }}
run: moodle-plugin-ci phpunit --coverage-text ./plugin || true

- name: Behat features
if: ${{ always() }}
run: moodle-plugin-ci behat --profile chrome
id: behat
if: ${{ !cancelled() }}
run: moodle-plugin-ci behat --profile chrome ./plugin

- name: Upload Behat Faildump
if: ${{ failure() && steps.behat.outcome == 'failure' }}
uses: actions/upload-artifact@v4
with:
name: Behat Faildump (${{ join(matrix.*, ', ') }})
path: ${{ github.workspace }}/moodledata/behat_dump
retention-days: 7
if-no-files-found: ignore

- name: Mark cancelled jobs as failed.
if: ${{ cancelled() }}
run: exit 1

0 comments on commit c17a2c2

Please sign in to comment.