You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

object-storage-azure.yml 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. # SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  2. # SPDX-License-Identifier: MIT
  3. name: Object storage azure
  4. on:
  5. pull_request:
  6. schedule:
  7. - cron: "15 2 * * *"
  8. concurrency:
  9. group: object-storage-azure-${{ github.head_ref || github.run_id }}
  10. cancel-in-progress: true
  11. jobs:
  12. changes:
  13. runs-on: ubuntu-latest-low
  14. outputs:
  15. src: ${{ steps.changes.outputs.src}}
  16. steps:
  17. - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
  18. id: changes
  19. continue-on-error: true
  20. with:
  21. filters: |
  22. src:
  23. - '.github/workflows/**'
  24. - '3rdparty/**'
  25. - '**/appinfo/**'
  26. - '**/lib/**'
  27. - '**/templates/**'
  28. - '**/tests/**'
  29. - 'vendor/**'
  30. - 'vendor-bin/**'
  31. - '.php-cs-fixer.dist.php'
  32. - 'composer.json'
  33. - 'composer.lock'
  34. - '**.php'
  35. azure-primary-tests:
  36. runs-on: ubuntu-latest
  37. needs: changes
  38. if: ${{ github.repository_owner != 'nextcloud-gmbh' && needs.changes.outputs.src != 'false' }}
  39. strategy:
  40. matrix:
  41. php-versions: ['8.1', '8.2', '8.3']
  42. include:
  43. - php-versions: '8.3'
  44. coverage: true
  45. name: php${{ matrix.php-versions }}-azure
  46. services:
  47. azurite:
  48. image: mcr.microsoft.com/azure-storage/azurite
  49. env:
  50. AZURITE_ACCOUNTS: nextcloud:bmV4dGNsb3Vk
  51. ports:
  52. - 10000:10000
  53. options: --health-cmd="nc 127.0.0.1 10000 -z" --health-interval=1s --health-retries=30
  54. cache:
  55. image: ghcr.io/nextcloud/continuous-integration-redis:latest
  56. ports:
  57. - 6379:6379/tcp
  58. options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
  59. steps:
  60. - name: Checkout server
  61. uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
  62. with:
  63. submodules: true
  64. - name: Set up php ${{ matrix.php-versions }}
  65. uses: shivammathur/setup-php@4bd44f22a98a19e0950cbad5f31095157cc9621b # v2
  66. with:
  67. php-version: ${{ matrix.php-versions }}
  68. # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
  69. extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, redis, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite
  70. coverage: ${{ matrix.coverage && 'xdebug' || 'none' }}
  71. ini-file: development
  72. env:
  73. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  74. - name: Set up Nextcloud
  75. env:
  76. OBJECT_STORE: azure
  77. OBJECT_STORE_KEY: nextcloud
  78. OBJECT_STORE_SECRET: bmV4dGNsb3Vk
  79. run: |
  80. composer install
  81. cp tests/redis.config.php config/
  82. cp tests/preseed-config.php config/config.php
  83. ./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-host=127.0.0.1 --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
  84. php -f tests/enable_all.php | grep -i -C9999 error && echo "Error during app setup" && exit 1 || exit 0
  85. - name: PHPUnit
  86. env:
  87. OBJECT_STORE: azure
  88. OBJECT_STORE_KEY: nextcloud
  89. OBJECT_STORE_SECRET: bmV4dGNsb3Vk
  90. run: composer run test -- --group PRIMARY-azure ${{ matrix.coverage && ' --coverage-clover ./clover.xml' || '' }}
  91. - name: Upload code coverage
  92. if: ${{ !cancelled() && matrix.coverage }}
  93. uses: codecov/codecov-action@v4.1.1
  94. with:
  95. files: ./clover.xml
  96. flags: phpunit-azure
  97. - name: Azurite logs
  98. if: always()
  99. run: |
  100. docker ps -a
  101. docker ps -aq | while read container ; do IMAGE=$(docker inspect --format='{{.Config.Image}}' $container); echo $IMAGE; docker logs $container; echo "\n\n" ; done
  102. azure-primary-summary:
  103. runs-on: ubuntu-latest-low
  104. needs: [changes, azure-primary-tests]
  105. if: always()
  106. steps:
  107. - name: Summary status
  108. run: if ${{ needs.changes.outputs.src != 'false' && needs.azure-primary-tests.result != 'success' }}; then exit 1; fi