Skip to content
Snippets Groups Projects
Select Git revision
  • de24aac1c09e745072b4392dcab403ccbc14aaaf
  • master default protected
  • hsh_3.10
  • v3.7-r1
  • v3.6-r1
  • v3.5-r2
  • v3.5-r1
  • v3.4-r2
  • v3.4-r1
  • v3.3-r1
  • v3.2-r6
  • v3.2-r5
  • v3.2-r4
  • v3.2-r3
  • v3.2-r2
  • v3.2-r1
  • v3.1-r2
  • v3.1-r1
  • v3.0-r4
  • v3.0-r3
  • v3.0-r2
21 results

CHANGES.md

Blame
  • To find the state of this project's repository at the time of any of these versions, check out the tags.
    moodle-plugin-ci.yml 4.19 KiB
    name: Moodle Plugin CI
    
    on: [push, pull_request]
    
    jobs:
      test:
        runs-on: ubuntu-latest
    
        services:
          postgres:
            image: postgres
            env:
              POSTGRES_USER: 'postgres'
              POSTGRES_HOST_AUTH_METHOD: 'trust'
            ports:
              - 5432:5432
            options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
          mariadb:
            image: mariadb
            env:
              MYSQL_USER: 'root'
              MYSQL_ALLOW_EMPTY_PASSWORD: "true"
            ports:
              - 3306:3306
            options: --health-cmd="mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 3
    
        strategy:
          fail-fast: false
          matrix:
            include:
              - php: 8.0
                moodle-branch: MOODLE_401_STABLE
                database: pgsql
              - php: 8.0
                moodle-branch: MOODLE_401_STABLE
                database: mariadb
    
              - php: 8.0
                moodle-branch: MOODLE_400_STABLE
                database: pgsql
              - php: 8.0
                moodle-branch: MOODLE_400_STABLE
                database: mariadb
    
              - php: 7.4
                moodle-branch: MOODLE_401_STABLE
                database: pgsql
              - php: 7.4
                moodle-branch: MOODLE_401_STABLE
                database: mariadb
    
              - php: 7.4
                moodle-branch: MOODLE_400_STABLE
                database: pgsql
              - php: 7.4
                moodle-branch: MOODLE_400_STABLE
                database: mariadb
    
              - php: 7.4
                moodle-branch: MOODLE_311_STABLE
                database: pgsql
              - php: 7.4
                moodle-branch: MOODLE_311_STABLE
                database: mariadb
    
              - php: 7.3
                moodle-branch: MOODLE_311_STABLE
                database: pgsql
              - php: 7.3
                moodle-branch: MOODLE_311_STABLE