Skip to content

Commit

Permalink
add a check
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhee17 committed Sep 5, 2023
1 parent 1c93fee commit e5a6203
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/gradle-cache-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Update Public Suffix List
on:
schedule:
- cron: '0 * * * *'

env:
LC_ALL: "en_US.UTF-8"

jobs:
update-psl:
if: github.repository == 'jrhee17/armeria'
runs-on: ubuntu-latest
steps:

- id: setup-jdk-19
name: Set up JDK 19
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '19'

- name: Download script
run: curl -s -L -O https://github.com/gradle/gradle-enterprise-build-validation-scripts/releases/download/v2.5/gradle-enterprise-gradle-build-validation-2.5.zip && \
unzip -q gradle-enterprise-gradle-build-validation-2.5.zip && \
mv gradle-enterprise-gradle-build-validation-2.5 scripts

- name: Run script
working-directory: scripts
run: ./03-validate-local-build-caching-different-locations.sh -r [email protected]:line/armeria.git -t build -a --parallel -f

0 comments on commit e5a6203

Please sign in to comment.