Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
setup-java/.github/workflows/e2e-cache.yml
View runs Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
209 lines (199 sloc)
6.05 KB
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: Validate cache | |
on: | |
push: | |
branches: | |
- main | |
- releases/* | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
gradle-save: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run setup-java with the cache for gradle | |
uses: ./ | |
id: setup-java | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
cache: gradle | |
- name: Create files to cache | |
# Need to avoid using Gradle daemon to stabilize the save process on Windows | |
# https://github.com/actions/cache/issues/454#issuecomment-840493935 | |
run: | | |
gradle downloadDependencies --no-daemon -p __tests__/cache/gradle | |
if [ ! -d ~/.gradle/caches ]; then | |
echo "::error::The ~/.gradle/caches directory does not exist unexpectedly" | |
exit 1 | |
fi | |
gradle-restore: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
needs: gradle-save | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run setup-java with the cache for gradle | |
uses: ./ | |
id: setup-java | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
cache: gradle | |
- name: Confirm that ~/.gradle/caches directory has been made | |
run: | | |
if [ ! -d ~/.gradle/caches ]; then | |
echo "::error::The ~/.gradle/caches directory does not exist unexpectedly" | |
exit 1 | |
fi | |
ls ~/.gradle/caches/ | |
maven-save: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run setup-java with the cache for maven | |
uses: ./ | |
id: setup-java | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
cache: maven | |
- name: Create files to cache | |
run: | | |
mvn verify -f __tests__/cache/maven/pom.xml | |
if [ ! -d ~/.m2/repository ]; then | |
echo "::error::The ~/.m2/repository directory does not exist unexpectedly" | |
exit 1 | |
fi | |
maven-restore: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
needs: maven-save | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run setup-java with the cache for maven | |
uses: ./ | |
id: setup-java | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
cache: maven | |
- name: Confirm that ~/.m2/repository directory has been made | |
run: | | |
if [ ! -d ~/.m2/repository ]; then | |
echo "::error::The ~/.m2/repository directory does not exist unexpectedly" | |
exit 1 | |
fi | |
ls ~/.m2/repository | |
sbt-save: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
working-directory: __tests__/cache/sbt | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run setup-java with the cache for sbt | |
uses: ./ | |
id: setup-java | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
cache: sbt | |
- name: Create files to cache | |
run: sbt update | |
- name: Check files to cache on macos-latest | |
if: matrix.os == 'macos-latest' | |
run: | | |
if [ ! -d ~/Library/Caches/Coursier ]; then | |
echo "::error::The ~/Library/Caches/Coursier directory does not exist unexpectedly" | |
exit 1 | |
fi | |
- name: Check files to cache on windows-latest | |
if: matrix.os == 'windows-latest' | |
run: | | |
if [ ! -d ~/AppData/Local/Coursier/Cache ]; then | |
echo "::error::The ~/AppData/Local/Coursier/Cache directory does not exist unexpectedly" | |
exit 1 | |
fi | |
- name: Check files to cache on ubuntu-latest | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
if [ ! -d ~/.cache/coursier ]; then | |
echo "::error::The ~/.cache/coursier directory does not exist unexpectedly" | |
exit 1 | |
fi | |
sbt-restore: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
working-directory: __tests__/cache/sbt | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-latest] | |
needs: sbt-save | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run setup-java with the cache for sbt | |
uses: ./ | |
id: setup-java | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
cache: sbt | |
- name: Confirm that ~/Library/Caches/Coursier directory has been made | |
if: matrix.os == 'macos-latest' | |
run: | | |
if [ ! -d ~/Library/Caches/Coursier ]; then | |
echo "::error::The ~/Library/Caches/Coursier directory does not exist unexpectedly" | |
exit 1 | |
fi | |
ls ~/Library/Caches/Coursier | |
- name: Confirm that ~/AppData/Local/Coursier/Cache directory has been made | |
if: matrix.os == 'windows-latest' | |
run: | | |
if [ ! -d ~/AppData/Local/Coursier/Cache ]; then | |
echo "::error::The ~/AppData/Local/Coursier/Cache directory does not exist unexpectedly" | |
exit 1 | |
fi | |
ls ~/AppData/Local/Coursier/Cache | |
- name: Confirm that ~/.cache/coursier directory has been made | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
if [ ! -d ~/.cache/coursier ]; then | |
echo "::error::The ~/.cache/coursier directory does not exist unexpectedly" | |
exit 1 | |
fi | |
ls ~/.cache/coursier |