ci: bisect step 2 — add SDK sibling clone
Some checks failed
CI / Linux x86_64 (Forgejo) (push) Failing after 2s

Bumps 0.1.3 -> 0.1.4.

Signed-off-by: flemming-it <sf@flemming.it>
This commit is contained in:
flemming-it 2026-05-01 18:10:28 +02:00
parent 6e35e5a797
commit 44612641b0
3 changed files with 16 additions and 2 deletions

View file

@ -25,3 +25,17 @@ jobs:
git fetch --depth=1 origin "$GITHUB_SHA" git fetch --depth=1 origin "$GITHUB_SHA"
git checkout -q FETCH_HEAD git checkout -q FETCH_HEAD
echo "checkout: ok, ls = $(ls)" echo "checkout: ok, ls = $(ls)"
- name: Checkout fai/module-sdk into sibling layout
run: |
set -eu
parent="$(dirname "$GITHUB_WORKSPACE")"
grandparent="$(dirname "$parent")"
sdk_dir="$grandparent/module_sdk"
mkdir -p "$sdk_dir"
cd "$sdk_dir"
git init -q
git remote add origin "https://git.flemming.ws/fai/module-sdk.git"
git fetch --depth=1 origin main
git checkout -q FETCH_HEAD
echo "module-sdk: ok, ls = $(ls)"

2
Cargo.lock generated
View file

@ -504,7 +504,7 @@ dependencies = [
[[package]] [[package]]
name = "text_extract" name = "text_extract"
version = "0.1.3" version = "0.1.4"
dependencies = [ dependencies = [
"fai-module-sdk", "fai-module-sdk",
"pdf-extract", "pdf-extract",

View file

@ -5,7 +5,7 @@
[package] [package]
name = "text_extract" name = "text_extract"
version = "0.1.3" version = "0.1.4"
edition = "2024" edition = "2024"
authors = ["Dr. Stefan Flemming <platform@flemming.ai>"] authors = ["Dr. Stefan Flemming <platform@flemming.ai>"]
license = "Apache-2.0" license = "Apache-2.0"