From 917182064e7d277f262b406b67d3c3647c2b32f2 Mon Sep 17 00:00:00 2001 From: Dan Marsden Date: Thu, 3 Dec 2020 11:42:23 +1300 Subject: [PATCH] Add github actions config. --- .github/workflows/ci.yml | 109 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..a18c4b6 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,109 @@ +name: Moodle Plugin CI + +# Run this workflow every time a new commit pushed to your repository +on: push + +jobs: + selftest: + name: CI test (make validate) + runs-on: ubuntu-18.04 + + steps: + - name: Check out repository code + uses: actions/checkout@v2 + + - name: Setup PHP 7.3 + uses: shivammathur/setup-php@v2 + with: + php-version: 7.3 + + - name: Initialise + run: make init + + - name: Validate + run: make validate + + citest: + name: CI test + needs: selftest + runs-on: ubuntu-18.04 + + services: + postgres: + image: postgres:9.6 + env: + POSTGRES_USER: 'postgres' + POSTGRES_HOST_AUTH_METHOD: 'trust' + # Health check to wait for postgres to start. + ports: + - 5432:5432 + options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3 + + strategy: + fail-fast: false + matrix: + include: + - php: '7.4' + moodle-branch: 'master' + - php: '7.4' + moodle-branch: 'MOODLE_311_STABLE' + - php: '7.4' + moodle-branch: 'MOODLE_310_STABLE' + - php: '7.4' + moodle-branch: 'MOODLE_39_STABLE' + - php: '7.4' + + steps: + - name: Check out repository code + uses: actions/checkout@v2 + + - name: Install node + uses: actions/setup-node@v1 + with: + node-version: '14.15.0' + + - name: Setup PHP ${{ matrix.php }} + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + extensions: pgsql, zip, gd, xmlrpc, soap + coverage: none + + - name: Initialise moodle-plugin-ci + run: | + make init + cp -R tests/Fixture/moodle-local_travis ../moodle-local_travis + echo $(cd bin; pwd) >> $GITHUB_PATH + echo $(cd vendor/bin; pwd) >> $GITHUB_PATH + echo "TRAVIS_BUILD_DIR="$(cd ../moodle-local_travis; pwd) >> $GITHUB_ENV + # PHPUnit depends on en_AU.UTF-8 locale + sudo locale-gen en_AU.UTF-8 + - name: Install moodle-plugin-ci + run: moodle-plugin-ci install -vvv + env: + DB: 'pgsql' + MOODLE_BRANCH: ${{ matrix.moodle-branch }} + IGNORE_PATHS: 'ignore' + IGNORE_NAMES: 'ignore_name.php' + MUSTACHE_IGNORE_NAMES: 'broken.mustache' + + - name: Run Integration tests + env: + MOODLE_BRANCH: ${{ matrix.moodle-branch }} + run: | + make test-phpunit + moodle-plugin-ci phplint + moodle-plugin-ci phpcpd + moodle-plugin-ci phpmd + moodle-plugin-ci codechecker + moodle-plugin-ci validate + moodle-plugin-ci savepoints + moodle-plugin-ci mustache + moodle-plugin-ci grunt || [ \ + "$MOODLE_BRANCH" != 'master' -a \ + "$MOODLE_BRANCH" != 'MOODLE_310_STABLE' -a \ + "$MOODLE_BRANCH" != 'MOODLE_39_STABLE' ] + moodle-plugin-ci phpdoc + moodle-plugin-ci phpunit --coverage-text + moodle-plugin-ci behat --profile default + moodle-plugin-ci behat --profile chrome