fix the mentions of CGAL_USE_BASIC_VIEWER_QT (with the Qt suffix) #457
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
| name: Compile CGAL Lab | |
| on: [push, pull_request,workflow_dispatch] | |
| permissions: | |
| contents: read | |
| jobs: | |
| batch_1: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install dependencies | |
| run: .github/install.sh | |
| - name: run1 | |
| run: ./.github/test.sh 0 ${{ github.workspace }} | |
| batch_2: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install dependencies | |
| run: .github/install.sh | |
| - name: run2 | |
| run: ./.github/test.sh 1 ${{ github.workspace }} | |
| batch_3: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install dependencies | |
| run: .github/install.sh | |
| - name: run3 | |
| run: ./.github/test.sh 2 ${{ github.workspace }} | |
| batch_4: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install dependencies | |
| run: .github/install.sh | |
| - name: run4 | |
| run: ./.github/test.sh 3 ${{ github.workspace }} |