Use glxinfo for fetching GPU with Integrated or Dedicated GPU Dedicated #67
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: test-catnap | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test-catnap: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Checkout Repository' | |
| uses: actions/checkout@v4 | |
| - name: 'Install Nim' | |
| uses: iffy/install-nim@v5 | |
| - name: 'Setup Nim' | |
| uses: jiro4989/setup-nim-action@v1 | |
| with: | |
| nim-version: 'stable' | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: 'Build Catnap' | |
| run: nim debug | |
| - name: 'Install libpcre3 and mesa-utils' | |
| run: sudo apt-get install libpcre3 libpcre3-dev mesa-utils | |
| - name: 'Run Tests' | |
| run: cd scripts && ./test-commandline-args.sh |