chore(vfs/windows): test migration from VFS to classic sync on windows #4553
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors | |
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| name: Linux Clang compilation and tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build: | |
| name: Linux Clang compilation and tests | |
| runs-on: ubuntu-latest | |
| container: ghcr.io/nextcloud/continuous-integration-client-qt6:client-trixie-6.8.2-2 | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| fetch-depth: 1 | |
| - name: Configure and compile | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake .. -G Ninja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Debug -DQT_MAJOR_VERSION=6 -DQUICK_COMPILER=ON -DBUILD_UPDATER=ON -DBUILD_TESTING=1 -DCMAKE_CXX_FLAGS=-Werror | |
| ninja | |
| - name: Run tests | |
| run: | | |
| cd build | |
| useradd -m -s /bin/bash test | |
| chown -R test:test . | |
| su -c 'xvfb-run ctest --output-on-failure' test |