From 091f26555642a5000ef72742b9ae4952d0702bfc Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Champin Date: Fri, 12 Jun 2026 10:47:33 +0200 Subject: [PATCH 1/2] fix bug in Rakefile after removing common/ --- Rakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 3ff22829..6640443c 100644 --- a/Rakefile +++ b/Rakefile @@ -3,7 +3,8 @@ task default: :test desc "Test examples in spec files" task :test do - sh %(bundle exec common/extract-examples.rb index.html) + sh %(wget https://w3c.github.io/json-ld-wg/common/extract-examples.rb) + sh %(bundle exec extract-examples.rb index.html) end desc "Extract Examples" From 026d8a840f07e6d4effeb59d6aba952754e358e0 Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Champin Date: Fri, 12 Jun 2026 11:07:05 +0200 Subject: [PATCH 2/2] disable example checking the examples are JSON-LD 1.2, and we don't hace a JSON-LD 1.2 parser yet --- .github/workflows/ci.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 28efee7e..6dbd2f04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,15 +13,16 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: 3.2 - - name: Install dependencies - run: bundle install - - name: Verify examples are consistent - run: bundle exec rake test + # - name: Set up Ruby + # uses: ruby/setup-ruby@v1 + # with: + # ruby-version: 3.2 + # - name: Install dependencies + # run: bundle install + + # - name: Verify examples are consistent + # run: bundle exec rake test - name: Echidna Auto-publish WD uses: w3c/spec-prod@v2