From 5bcbf36711e0abec99b5ad8b1dc340323753a971 Mon Sep 17 00:00:00 2001 From: Adrian Bunk Date: Sun, 19 Apr 2026 20:44:31 +0300 Subject: [PATCH 1/3] Fix the 32-bit build (#206) Good that this fixes compilation for 32 bits ! --- ext/OSCPack/osc/OscReceivedElements.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ext/OSCPack/osc/OscReceivedElements.h b/ext/OSCPack/osc/OscReceivedElements.h index 8820c3e..c5decd5 100644 --- a/ext/OSCPack/osc/OscReceivedElements.h +++ b/ext/OSCPack/osc/OscReceivedElements.h @@ -100,6 +100,11 @@ public: : contents_( contents ) , size_( ValidateSize( (osc_bundle_element_size_t)size ) ) {} +#if !(defined(__LP64__) || defined(_LP64) || defined(__SIZEOF_POINTER__) && __SIZEOF_POINTER__ == 8) + ReceivedPacket( const char *contents, int size ) + : contents_( contents ) + , size_( ValidateSize( (osc_bundle_element_size_t)size ) ) {} +#endif bool IsMessage() const { return !IsBundle(); } bool IsBundle() const; From e49ac8bd1eb55a95bb361d1a2daecb1fa6d9e5a1 Mon Sep 17 00:00:00 2001 From: BHBN <60393189+brunoherbelin@users.noreply.github.com> Date: Sun, 19 Apr 2026 22:46:06 +0200 Subject: [PATCH 2/3] Delete .github/workflows/jekyll-gh-pages.yml Getting rid of jekyll website to prevent a problem that i have no idea how to fix about "Deploy Jekyll with GitHub Pages dependencies preinstalled: Some jobs were not successful" --- .github/workflows/jekyll-gh-pages.yml | 50 --------------------------- 1 file changed, 50 deletions(-) delete mode 100644 .github/workflows/jekyll-gh-pages.yml diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml deleted file mode 100644 index 5b77df6..0000000 --- a/.github/workflows/jekyll-gh-pages.yml +++ /dev/null @@ -1,50 +0,0 @@ -# Sample workflow for building and deploying a Jekyll site to GitHub Pages -name: Deploy Jekyll with GitHub Pages dependencies preinstalled - -on: - # Runs on pushes targeting the default branch - push: - branches: ["master"] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages -permissions: - contents: read - pages: write - id-token: write - -# Allow one concurrent deployment -concurrency: - group: "pages" - cancel-in-progress: true - -jobs: - # Build job - build: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Pages - uses: actions/configure-pages@v2 - - name: Build with Jekyll - uses: actions/jekyll-build-pages@v1 - with: - source: ./docs - destination: ./_site - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - - # Deployment job - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - needs: build - steps: - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v1 From 22653d5367e296f977c75e3717cb5e9065c6e09f Mon Sep 17 00:00:00 2001 From: BHBN <60393189+brunoherbelin@users.noreply.github.com> Date: Mon, 20 Apr 2026 20:31:05 +0200 Subject: [PATCH 3/3] Add GitHub Actions workflow for Jekyll deployment This workflow builds and deploys a Jekyll site to GitHub Pages with necessary dependencies preinstalled. --- .github/workflows/jekyll-gh-pages.yml | 51 +++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 .github/workflows/jekyll-gh-pages.yml diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml new file mode 100644 index 0000000..35b3230 --- /dev/null +++ b/.github/workflows/jekyll-gh-pages.yml @@ -0,0 +1,51 @@ +# Sample workflow for building and deploying a Jekyll site to GitHub Pages +name: Deploy Jekyll with GitHub Pages dependencies preinstalled + +on: + # Runs on pushes targeting the default branch + push: + branches: ["master"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +jobs: + # Build job + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Build with Jekyll + uses: actions/jekyll-build-pages@v1 + with: + source: ./ + destination: ./_site + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v5