[.github] Disable collectScreenshots task in generate-screenshots.yml workflow
This commit is contained in:
30
.github/workflows/generate-screenshots.yml
vendored
30
.github/workflows/generate-screenshots.yml
vendored
@@ -8,6 +8,27 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-18.04
|
runs-on: ubuntu-18.04
|
||||||
steps:
|
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/checkout@v2
|
||||||
- uses: actions/setup-java@v1
|
- uses: actions/setup-java@v1
|
||||||
with:
|
with:
|
||||||
@@ -19,15 +40,6 @@ jobs:
|
|||||||
export GALLIUM_DRIVER=swr
|
export GALLIUM_DRIVER=swr
|
||||||
xvfb-run glxinfo
|
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
|
# - name: Collect screenshots
|
||||||
# run: xvfb-run ./gradlew collectScreenshots
|
# run: xvfb-run ./gradlew collectScreenshots
|
||||||
- name: Build main readme
|
- name: Build main readme
|
||||||
|
|||||||
Reference in New Issue
Block a user