some fixes #96
Workflow file for this run
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: Server builds | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
workflow_dispatch: | |
#This permission is needed to push a release (and/or tags) | |
permissions: | |
contents: write #nessesary for tag creation and release creation | |
actions: write #nessesary for cache deletion | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Cache .gradle | |
uses: burrunan/gradle-cache-action@v1 | |
with: | |
# Enable concurrent cache save and restore | |
# Default is concurrent=false for better log readability | |
concurrent: true | |
# Disable caching of $HOME/.gradle/caches/*.*/generated-gradle-jars | |
save-generated-gradle-jars: false | |
# Disable publishing Gradle Build Scan URL to job report | |
gradle-build-scan-report: false | |
- name: Restore Project Sources for faster setup | |
id: cache_projects-src_restore | |
uses: actions/cache/restore@v3 | |
with: | |
path: | | |
projects/ | |
key: project-src-cache-${{ hashFiles('patches') }} | |
restore-keys: | | |
project-src-cache- | |
- name: Validate Gradle wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Setup Ketting | |
id: setup | |
run: ./gradlew setup | |
- name: Save Project Sources | |
if: steps.cache_projects-src_restore.output.cache-hit == 'false' | |
uses: actions/cache/save@v3 | |
with: | |
path: | | |
projects/ | |
key: ${{ steps.cache_projects-src_restore.outputs.cache-primary-key }} | |
- name: Save Project Sources for build | |
if: false | |
uses: actions/cache/save@v3 | |
with: | |
path: | | |
projects/ | |
key: project-src-cache-${{ github.ref }}-${{ github.sha }} | |
build: | |
if: false | |
runs-on: ubuntu-latest | |
needs: setup | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Cache .gradle | |
uses: burrunan/gradle-cache-action@v1 | |
with: | |
# Enable concurrent cache save and restore | |
# Default is concurrent=false for better log readability | |
concurrent: true | |
# Disable caching of $HOME/.gradle/caches/*.*/generated-gradle-jars | |
save-generated-gradle-jars: false | |
# Disable publishing Gradle Build Scan URL to job report | |
gradle-build-scan-report: false | |
- name: Restore Project Sources for build | |
uses: actions/cache/restore@v3 | |
with: | |
path: | | |
projects/ | |
key: project-src-cache-${{ github.ref }}-${{ github.sha }} | |
- name: Delete Project Sources for build | |
run: | | |
gh extension install actions/gh-actions-cache | |
REPO=${{ github.repository }} | |
BRANCH=${{ github.ref }} | |
echo "Deleting caches..." | |
## Setting this to not fail the workflow while deleting cache keys. | |
#set +e | |
gh actions-cache delete project-src-cache-${{ github.ref }}-${{ github.sha }} -R $REPO -B $BRANCH --confirm | |
echo "Done" | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build Ketting Jar | |
run: ./gradlew kettingJar | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: project-forge-build-libs | |
path: | | |
projects/forge/build/libs/ |