Skip to content

Commit

Permalink
[.github] Disable collectScreenshots task in generate-screenshots.yml…
Browse files Browse the repository at this point in the history
… workflow
  • Loading branch information
edwinRNDR committed Sep 3, 2021
1 parent 358a4c6 commit 8b7cffe
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions .github/workflows/generate-screenshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,27 @@ jobs:
build:
runs-on: ubuntu-18.04
steps:
# Get OPENRNDR
- name: Get OPENRNDR HEAD ref
run: echo "OPENRNDR_HEAD=$(git ls-remote https://github.com/openrndr/openrndr HEAD | awk '{print $1}')" >> $GITHUB_ENV
- uses: actions/cache@v2
id: cache_openrndr
with:
path: |
./openrndr
key: ${{ runner.os }}--openrndr-${{ env.OPENRNDR_HEAD }}
- uses: actions/checkout@v2.3.4
if: steps.cache_openrndr.outputs.cache-hit != 'true'
with:
repository: openrndr/openrndr
path: ./openrndr
ref: master
- name: Publish OPENRNDR snapshot
run: |
cd ./openrndr
./gradlew publishToMavenLocal -Prelease.version=0.5.1-SNAPSHOT
cd ..
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
Expand All @@ -19,15 +40,6 @@ jobs:
export GALLIUM_DRIVER=swr
xvfb-run glxinfo
- uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
# - name: Collect screenshots
# run: xvfb-run ./gradlew collectScreenshots
- name: Build main readme
Expand Down

0 comments on commit 8b7cffe

Please sign in to comment.