Skip to content

Commit 6fee7ee

Browse files
committed
Fix ARM64 runner
1 parent 649111c commit 6fee7ee

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
arch: ["arm64", "amd64"]
27-
runs-on: ${{ matrix.arch == 'arm64' && 'opensource-linux-arm64-4core' || 'opensource-linux-8core' }}
27+
runs-on: ${{ matrix.arch == 'arm64' && 'ubuntu-24.04-arm' || 'opensource-linux-8core' }}
2828
needs: set-short-sha
2929
env:
3030
SHORT_SHA: ${{ needs.set-short-sha.outputs.short_sha }}

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1+
## 0.1.1
2+
* Switch arm64 Docker build runner from custom `opensource-linux-arm64-4core` to GitHub-hosted `ubuntu-24.04-arm`
3+
14
## 0.1.0
25
* Migrate to native uv for package management, replacing pip and pip-compile
36
* Replace black and flake8 with ruff for linting and formatting
47
* Remove all version pins from dependencies, use uv.lock for reproducibility
58
* Update Dockerfile, CI workflows, and Makefile to use uv throughout
69
* Fix flaky Korean OCR test assertions for tesseract compatibility
710
* Use `.python-version` file as single source of truth for Python version across all CI workflows
8-
* Re-enable arm64 Docker image builds using a dedicated ARM runner (`opensource-linux-arm64-4core`), restoring multiarch support for both amd64 and arm64
11+
* Re-enable arm64 Docker image builds with a dedicated ARM runner, restoring multiarch support for both amd64 and arm64
912
* Switch all CI workflows to faster self-hosted runners (`opensource-linux-8core`)
1013
* Split lint tools into a lightweight dependency group so the CI lint step no longer installs heavy runtime dependencies
1114
* Add explicit dependencies for `backoff`, `pandas`, `psutil`, `pypdf`, and `requests` (previously only transitive via `unstructured[all-docs]`)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.0" # pragma: no cover
1+
__version__ = "0.1.1" # pragma: no cover

0 commit comments

Comments
 (0)