Skip to content

Commit

Permalink
Merge branch 'release/1.13.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
yfanti committed Nov 28, 2024
2 parents 62efd66 + 9ab3ea0 commit 62066ba
Show file tree
Hide file tree
Showing 1,111 changed files with 1,067,292 additions and 957,412 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4

Expand All @@ -24,5 +23,3 @@ jobs:

- name: Build and analyze SDK
run: mvn clean install -Panalyze --no-transfer-progress -s .github/workflows/settings.xml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54 changes: 54 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: Benchmark Schematron rules with the SDK Analyzer

on:
push:
pull_request:
# Allows to also run this workflow manually from the Actions tab
workflow_dispatch:
# Run this workflow every Tuesday and Friday at 05:00
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 5 * * 2,5'


jobs:
benchmark:
name: Run Schematron benchmark
runs-on: ubuntu-latest
permissions:
# Contents permission needed to create a commit comment
contents: write
steps:
- uses: actions/checkout@v4

- name: Set up Java
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'adopt'

- name: Run benchmark
run: mvn clean install -Pbenchmark --no-transfer-progress -s .github/workflows/settings.xml

# Download previous benchmark result from cache (if exists)
- name: Download previous benchmark data
uses: actions/cache@v4
with:
path: ./cache
key: ${{ runner.os }}-benchmark

- name: Process benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
name: JMH Benchmark
tool: 'jmh'
output-file-path: jmh-result.json
external-data-json-path: ./cache/benchmark-data.json
# Alert if new results are significantly worse than previous results
alert-threshold: "110%"
# Mark the workflow as failed if an alert happens
fail-on-alert: true
# Add a comment on the commit that caused the alert
comment-on-alert: true
# GitHub API token to make a commit comment
github-token: ${{ secrets.GITHUB_TOKEN }}
9 changes: 6 additions & 3 deletions .github/workflows/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@
</activation>
<repositories>
<repository>
<id>github</id>
<name>OP-TED GitHub Packages</name>
<url>https://public:${env.GITHUB_TOKEN}@maven.pkg.github.com/OP-TED/*</url>
<id>ossrh</id>
<name>OSSRH Snapshots</name>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
Expand Down
8 changes: 0 additions & 8 deletions .ted/tedweb/README.md

This file was deleted.

86 changes: 0 additions & 86 deletions .ted/tedweb/report-metadata.json

This file was deleted.

206 changes: 0 additions & 206 deletions .ted/tedweb/search-metadata.json

This file was deleted.

Loading

0 comments on commit 62066ba

Please sign in to comment.