comment out scopy test build #248
This file contains 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 Scopy GUI on Linux | |
on: push | |
jobs: | |
test-linux-scopy-artifact: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.8'] | |
name: Python ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- run: | | |
bash ./.github/scripts/install_scopy_linux.sh | |
- run: | | |
Xvfb :99 -ac & | |
export DISPLAY=:99 | |
sleep 5 | |
flatpak run org.adi.Scopy & | |
sleep 15 | |
scrot test.png | |
- name: Upload GUI Screenshot Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: test_img | |
path: test.png | |
retention-days: 5 | |
#TODO: Add job with trigger from another repo |