weston headless
#75
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
| name: Linux Docker CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'src/**' | |
| - 'include/**' | |
| - 'tests/**' | |
| - 'CMakeLists.txt' | |
| - 'linux-tests.Dockerfile' | |
| - '.github/workflows/linux-docker-ci.yml' | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'src/**' | |
| - 'include/**' | |
| - 'tests/**' | |
| - 'CMakeLists.txt' | |
| - 'linux-tests.Dockerfile' | |
| - '.github/workflows/linux-docker-ci.yml' | |
| jobs: | |
| build-and-test-linux: | |
| if: false # TODO: Re-enable later | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 6 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Build Docker image | |
| run: docker build -t linux-tests -f linux-tests.Dockerfile . | |
| - name: Test with Docker | |
| run: docker run -e CI=true linux-tests |