Data driven performance results #19
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: GitHub Pages | |
on: | |
push: | |
branches: [ main] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: "23 9 */14 * *" | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
# Allow one concurrent deployment, per branch | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
get_impls: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up JDK | |
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 | |
with: | |
gradle-home-cache-cleanup: true | |
- name: Extract implementation info | |
run: ./gradlew --quiet extractImplementations | |
- name: Add results to step summary | |
run: cat docs/_includes/implementations.json >> $GITHUB_STEP_SUMMARY | |
- name: Upload Implementations | |
uses: actions/upload-artifact@v3 | |
with: | |
name: implementations | |
path: docs/_includes/* | |
retention-days: 1 | |
run_functional: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up JDK | |
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 | |
with: | |
gradle-home-cache-cleanup: true | |
- name: Run functional tests | |
run: ./gradlew --quiet runFunctionalTests | |
- name: Add results to step summary | |
run: | | |
echo "# Overall comparison" >> $GITHUB_STEP_SUMMARY | |
cat docs/_includes/functional-summary.md >> $GITHUB_STEP_SUMMARY | |
echo "# Specific Draft & Implementation results" >> $GITHUB_STEP_SUMMARY | |
cat docs/_includes/per-draft.md >> $GITHUB_STEP_SUMMARY | |
- name: Upload Implementations | |
uses: actions/upload-artifact@v3 | |
with: | |
name: functional | |
path: docs/_includes/* | |
retention-days: 1 | |
run_performance: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up JDK | |
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@842c587ad8aa4c68eeba24c396e15af4c2e9f30a # v2.9.0 | |
with: | |
gradle-home-cache-cleanup: true | |
- name: Run performance benchmarks | |
run: ./gradlew --quiet runBenchmarks | |
- name: Add results to step summary | |
run: | | |
echo "# Json Validator Benchmark Results" >> $GITHUB_STEP_SUMMARY | |
cat docs/_includes/JsonValidateBenchmark.md >> $GITHUB_STEP_SUMMARY | |
echo "# Json Serde Benchmark Results" >> $GITHUB_STEP_SUMMARY | |
cat docs/_includes/JsonSerdeBenchmark.md >> $GITHUB_STEP_SUMMARY | |
- name: Upload Implementations | |
uses: actions/upload-artifact@v3 | |
with: | |
name: performance | |
path: docs/_includes/* | |
retention-days: 1 | |
build_pages: | |
needs: [get_impls, run_functional] | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/docs/Gemfile | |
steps: | |
- name: Checkout | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v3.4.0 | |
with: | |
fetch-depth: 0 # need full history to get page last modified times | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@250fcd6a742febb1123a77a841497ccaa8b9e939 # v1.152.0 | |
with: | |
ruby-version: '3.1' | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
cache-version: 0 # Increment this number if you need to re-download cached gems | |
- name: Setup Pages | |
id: pages | |
uses: actions/configure-pages@f156874f8191504dae5b037505266ed5dda6c382 # v3.0.6 | |
- name: Download all build artefacts | |
uses: actions/download-artifact@v3 | |
with: | |
path: docs/_includes/ | |
- name: Build with Jekyll | |
run: (cd docs && bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}") | |
env: | |
JEKYLL_ENV: production | |
- name: Upload artifact | |
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | |
# Automatically uploads an artifact from the './_site' directory by default | |
uses: actions/upload-pages-artifact@a753861a5debcf57bf8b404356158c8e1e33150c # v2.0.0 | |
with: | |
path: "docs/_site/" | |
# Deployment job | |
deploy_pages: | |
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | |
needs: build_pages | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@9dbe3824824f8a1377b8e298bafde1a50ede43e5 # v2.0.4 | |
- name: Ping Google Search | |
run: curl "https://www.google.com/ping?sitemap=https://www.creekservice.org/${{ github.event.repository.name }}/sitemap.xml" |