phpunit-oci.yml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. # This workflow is provided via the organization template repository
  2. #
  3. # https://github.com/nextcloud/.github
  4. # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
  5. #
  6. # SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors
  7. # SPDX-License-Identifier: MIT
  8. name: PHPUnit OCI
  9. on:
  10. pull_request:
  11. schedule:
  12. - cron: "5 2 * * *"
  13. permissions:
  14. contents: read
  15. concurrency:
  16. group: phpunit-oci-${{ github.head_ref || github.run_id }}
  17. cancel-in-progress: true
  18. jobs:
  19. changes:
  20. runs-on: ubuntu-latest-low
  21. outputs:
  22. src: ${{ steps.changes.outputs.src }}
  23. steps:
  24. - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
  25. id: changes
  26. continue-on-error: true
  27. with:
  28. filters: |
  29. src:
  30. - '.github/workflows/**'
  31. - '3rdparty/**'
  32. - '**/appinfo/**'
  33. - '**/lib/**'
  34. - '**/templates/**'
  35. - '**/tests/**'
  36. - 'vendor/**'
  37. - 'vendor-bin/**'
  38. - '.php-cs-fixer.dist.php'
  39. - 'composer.json'
  40. - 'composer.lock'
  41. - '**.php'
  42. phpunit-oci:
  43. runs-on: ubuntu-latest
  44. needs: changes
  45. if: ${{ needs.changes.outputs.src != 'false' && github.repository_owner != 'nextcloud-gmbh' }}
  46. strategy:
  47. fail-fast: false
  48. matrix:
  49. include:
  50. - oracle-versions: '11'
  51. php-versions: '8.1'
  52. - oracle-versions: '18'
  53. php-versions: '8.1'
  54. coverage: ${{ github.event_name != 'pull_request' }}
  55. - oracle-versions: '21'
  56. php-versions: '8.2'
  57. - oracle-versions: '23'
  58. php-versions: '8.3'
  59. - oracle-versions: '23'
  60. php-versions: '8.4'
  61. name: Oracle ${{ matrix.oracle-versions }} (PHP ${{ matrix.php-versions }}) - database tests
  62. services:
  63. cache:
  64. image: ghcr.io/nextcloud/continuous-integration-redis:latest
  65. ports:
  66. - 6379:6379/tcp
  67. options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
  68. oracle:
  69. image: ghcr.io/gvenzl/oracle-${{ matrix.oracle-versions < 23 && 'xe' || 'free' }}:${{ matrix.oracle-versions }}
  70. # Provide passwords and other environment variables to container
  71. env:
  72. ORACLE_PASSWORD: oracle
  73. # Forward Oracle port
  74. ports:
  75. - 1521:1521
  76. # Provide healthcheck script options for startup
  77. options: >-
  78. --health-cmd healthcheck.sh
  79. --health-interval 20s
  80. --health-timeout 10s
  81. --health-retries 10
  82. steps:
  83. - name: Checkout server
  84. uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
  85. with:
  86. submodules: true
  87. - name: Set up php ${{ matrix.php-versions }}
  88. uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 #v2.31.1
  89. with:
  90. php-version: ${{ matrix.php-versions }}
  91. # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
  92. extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, redis, session, simplexml, xmlreader, xmlwriter, zip, zlib, oci8
  93. coverage: ${{ matrix.coverage && 'xdebug' || 'none' }}
  94. ini-file: development
  95. env:
  96. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  97. - name: Set up dependencies
  98. run: composer i
  99. - name: Set up Nextcloud
  100. run: |
  101. mkdir data
  102. cp tests/redis.config.php config/
  103. cp tests/preseed-config.php config/config.php
  104. ./occ maintenance:install --verbose --database=oci --database-name=${{ matrix.oracle-versions < 23 && 'XE' || 'FREE' }} --database-host=127.0.0.1 --database-port=1521 --database-user=system --database-pass=oracle --admin-user admin --admin-pass admin
  105. php -f tests/enable_all.php | grep -i -C9999 error && echo "Error during app setup" && exit 1 || exit 0
  106. - name: PHPUnit
  107. run: composer run test:db ${{ matrix.coverage && ' -- --coverage-clover ./clover.db.xml' || '' }}
  108. - name: Upload db code coverage
  109. if: ${{ !cancelled() && matrix.coverage }}
  110. uses: codecov/codecov-action@v4.6.0
  111. with:
  112. files: ./clover.db.xml
  113. flags: phpunit-oci
  114. - name: Run repair steps
  115. run: |
  116. ./occ maintenance:repair --include-expensive
  117. summary:
  118. permissions:
  119. contents: none
  120. runs-on: ubuntu-latest-low
  121. needs: [changes, phpunit-oci]
  122. if: always()
  123. name: phpunit-oci-summary
  124. steps:
  125. - name: Summary status
  126. run: if ${{ needs.changes.outputs.src != 'false' && needs.phpunit-oci.result != 'success' }}; then exit 1; fi