object-storage-swift.yml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. # SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
  2. # SPDX-License-Identifier: MIT
  3. name: Object storage Swift
  4. on:
  5. pull_request:
  6. schedule:
  7. - cron: "15 2 * * *"
  8. concurrency:
  9. group: object-storage-swift-${{ 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. swift-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 }}-swift
  46. services:
  47. cache:
  48. image: ghcr.io/nextcloud/continuous-integration-redis:latest
  49. ports:
  50. - 6379:6379/tcp
  51. options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
  52. swift:
  53. image: ghcr.io/cscfi/docker-keystone-swift
  54. ports:
  55. - 5000:5000
  56. - 8080:8080
  57. steps:
  58. - name: Checkout server
  59. uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
  60. with:
  61. submodules: true
  62. - name: Set up php ${{ matrix.php-versions }}
  63. uses: shivammathur/setup-php@2e947f1f6932d141d076ca441d0e1e881775e95b #v2.31.0
  64. with:
  65. php-version: ${{ matrix.php-versions }}
  66. # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
  67. 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
  68. coverage: ${{ matrix.coverage && 'xdebug' || 'none' }}
  69. ini-file: development
  70. env:
  71. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  72. - name: Set up Nextcloud
  73. env:
  74. OBJECT_STORE: swift
  75. OBJECT_STORE_SECRET: veryfast
  76. run: |
  77. composer install
  78. cp tests/redis.config.php config/
  79. cp tests/preseed-config.php config/config.php
  80. ./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
  81. php -f tests/enable_all.php | grep -i -C9999 error && echo "Error during app setup" && exit 1 || exit 0
  82. - name: PHPUnit
  83. env:
  84. OBJECT_STORE: swift
  85. OBJECT_STORE_SECRET: veryfast
  86. run: composer run test -- --group PRIMARY-swift ${{ matrix.coverage && ' --coverage-clover ./clover.xml' || '' }}
  87. - name: Upload code coverage
  88. if: ${{ !cancelled() && matrix.coverage }}
  89. uses: codecov/codecov-action@v4.1.1
  90. with:
  91. files: ./clover.xml
  92. flags: phpunit-swift
  93. - name: Swift logs
  94. if: always()
  95. run: |
  96. docker ps -a
  97. docker ps -aq | while read container ; do IMAGE=$(docker inspect --format='{{.Config.Image}}' $container); echo $IMAGE; docker logs $container; echo "\n\n" ; done
  98. swift-primary-summary:
  99. runs-on: ubuntu-latest-low
  100. needs: [changes,swift-primary-tests]
  101. if: always()
  102. steps:
  103. - name: Summary status
  104. run: if ${{ needs.changes.outputs.src != 'false' && needs.swift-primary-tests.result != 'success' }}; then exit 1; fi