diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-01-12 15:51:13 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-02-07 11:23:10 +0100 |
commit | 3885818ab67f941a54d8b186945399e55c9ac6fe (patch) | |
tree | 812f51a48a83e6e7990ad1b03b573dfd3f091bfd /.github | |
parent | 17ed023be26a6b6aa8f08f27d2faf4a32c2c5b24 (diff) | |
download | nextcloud-server-3885818ab67f941a54d8b186945399e55c9ac6fe.tar.gz nextcloud-server-3885818ab67f941a54d8b186945399e55c9ac6fe.zip |
Add workflow for 32bits testing
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/phpunit-32bits.yml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/.github/workflows/phpunit-32bits.yml b/.github/workflows/phpunit-32bits.yml new file mode 100644 index 00000000000..a0da6a4fe4a --- /dev/null +++ b/.github/workflows/phpunit-32bits.yml @@ -0,0 +1,47 @@ +name: PHPUnit + +on: pull_request + +permissions: + contents: read + +concurrency: + group: phpunit-32bits-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +jobs: + phpunit-32bits: + runs-on: ubuntu-latest + container: shivammathur/node:latest-i386 + + strategy: + matrix: + php-versions: ['8.0'] + + steps: + - name: Checkout server + uses: actions/checkout@v3 + with: + submodules: true + + - name: Set up php ${{ matrix.php-versions }} + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} + extensions: ctype, curl, dom, fileinfo, gd, imagick, intl, json, mbstring, oci8, openssl, pdo_sqlite, posix, sqlite, xml, zip, apcu + tools: phpunit:9 + coverage: none + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + - name: Set up Nextcloud + env: + DB_PORT: 4444 + run: | + mkdir data + ./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=autotest --database-pass=rootpassword --admin-user admin --admin-pass admin + php -f index.php + + - name: PHPUnit + working-directory: tests + run: phpunit --configuration phpunit-autotest.xml --group NODB,DB,SLOWDB |