Skip to content

Commit

Permalink
misc: fix github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
zimond committed Jun 3, 2024
1 parent b3fd981 commit fc2b4ff
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 218 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['16', '18', '20']
node: ["18"]
runs-on: ubuntu-latest

steps:
Expand All @@ -49,10 +49,9 @@ jobs:
with:
key: ${{ matrix.settings.target }}-node@${{ matrix.node }}-cargo-cache

- name: Install wasm-pack
uses: jetli/[email protected]
with:
version: "latest"
- name: Install cargo components
run: |
cargo install cargo-component && yarn global add @bytecodealliance/jco
- name: Install dependencies
run: yarn install --ignore-scripts --frozen-lockfile --registry https://registry.npmjs.org --network-timeout 300000
Expand All @@ -67,4 +66,4 @@ jobs:
uses: actions/upload-artifact@v2
with:
name: wasm32
path: pkg/**/*.wasm
path: pkg/*.wasm
1 change: 1 addition & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt

Expand Down
26 changes: 12 additions & 14 deletions __test__/wasm.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import { fileURLToPath } from 'url';

import test from 'ava';

import { default as Toolkit } from '../pkg/node/index.js';

const { FontKit } = Toolkit;
import { FontKit } from '../index.js';

const __dirname = dirname(fileURLToPath(import.meta.url));

Expand All @@ -19,20 +17,20 @@ test.before(async () => {

test('em box', (t) => {
const fontkit = new FontKit();
const [key] = fontkit.add_font_from_buffer(fontData!);
const [key] = fontkit.addFontFromBuffer(fontData!);
const font = fontkit.query(key);

t.not(font, undefined);
t.is(font!.units_per_em, 2048);
t.is(font!.unitsPerEm(), 2048);
});

test('glyph path to_string()', (t) => {
const fontkit = new FontKit();
const [key] = fontkit.add_font_from_buffer(fontData!);
const font = fontkit.query(key);
// test('glyph path to_string()', (t) => {
// const fontkit = new FontKit();
// const [key] = fontkit.addFontFromBuffer(fontData!);
// const font = fontkit.query(key);

t.is(
font!.glyph_path('A')!.to_string(),
'M 813 2324 L 317 2324 L 72 2789 L -117 2789 L 682 1327 L 856 1327 L 1040 2789 L 870 2789 L 813 2324 z M 795 2168 L 760 1869 Q 736 1690 731 1519 Q 694 1607 650.5 1694 Q 607 1781 401 2168 L 795 2168 z',
);
});
// t.is(
// font!.('A')!.to_string(),
// 'M 813 2324 L 317 2324 L 72 2789 L -117 2789 L 682 1327 L 856 1327 L 1040 2789 L 870 2789 L 813 2324 z M 795 2168 L 760 1869 Q 736 1690 731 1519 Q 694 1607 650.5 1694 Q 607 1781 401 2168 L 795 2168 z',
// );
// });
186 changes: 0 additions & 186 deletions node.js

This file was deleted.

14 changes: 5 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
"files": [
"pkg/**/*",
"index.js",
"index.d.ts",
"Readme.md"
],
"author": "Zimon Dai <[email protected]>",
"license": "MIT",
"types": "./pkg/bundler/index.d.ts",
"types": "./index.d.ts",
"scripts": {
"build": "wasm-pack build --target bundler --out-name index --out-dir pkg/bundler --release && wasm-pack build --target nodejs --out-name index --out-dir pkg/node --release && rm -rf pkg/bundler/package.json",
"build:wasi": "cargo build --release --target wasm32-wasi && mkdir -p pkg/wasi && cp target/wasm32-wasi/release/fontkit.wasm pkg/wasi/",
"test": "NODE_OPTIONS='--loader=tsx' ava",
"build": "cargo component build --release && jco transpile target/wasm32-wasi/release/fontkit.wasm -o pkg --no-namespaced-exports",
"test": "ava",
"format:rs": "cargo fmt",
"format:source": "prettier --config ./package.json --write './**/*.{js,ts,mjs}'",
"format:yaml": "prettier --parser yaml --write './**/*.{yml,yaml}'",
Expand Down Expand Up @@ -48,9 +48,6 @@
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=tsx"
],
"timeout": "2m",
"environmentVariables": {
"TS_NODE_PROJECT": "./tsconfig.json"
Expand All @@ -66,7 +63,6 @@
},
"type": "module",
"dependencies": {
"@bytecodealliance/preview2-shim": "^0.16.1",
"walkdir": "^0.4.1"
"@bytecodealliance/preview2-shim": "^0.16.1"
}
}
7 changes: 4 additions & 3 deletions src/bindings.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated by `wit-bindgen` 0.24.0. DO NOT EDIT!
// Generated by `wit-bindgen` 0.25.0. DO NOT EDIT!
// Options used:
// * additional derives ["Clone", "Hash", "PartialEq", "PartialOrd", "Eq",
// "Default"]
Expand Down Expand Up @@ -2672,6 +2672,7 @@ mod _rt {
/// to drop a resource.
///
/// This generally is implemented by generated code, not user-facing code.
#[allow(clippy::missing_safety_doc)]
pub unsafe trait WasmResource {
/// Invokes the `[resource-drop]...` intrinsic.
unsafe fn drop(handle: u32);
Expand Down Expand Up @@ -2902,7 +2903,7 @@ macro_rules! __export_fontkit_impl {
pub(crate) use __export_fontkit_impl as export;

#[cfg(target_arch = "wasm32")]
#[link_section = "component-type:wit-bindgen:0.24.0:fontkit:encoded world"]
#[link_section = "component-type:wit-bindgen:0.25.0:fontkit:encoded world"]
#[doc(hidden)]
pub static __WIT_BINDGEN_COMPONENT_TYPE: [u8; 2673] = *b"\
\0asm\x0d\0\x01\0\0\x19\x16wit-component-encoding\x04\0\x07\xf3\x13\x01A\x02\x01\
Expand Down Expand Up @@ -2957,7 +2958,7 @@ ethod]font-kit.add-font-from-buffer\x01:\x01@\x02\x04self8\x04paths\x01\0\x04\0\
th-to-number\x01F\x01@\x01\x05width{\0s\x04\0\x13number-width-to-str\x01G\x04\x01\
!alibaba:fontkit/fontkit-interface\x05\x02\x04\x01\x17alibaba:fontkit/fontkit\x04\
\0\x0b\x0d\x01\0\x07fontkit\x03\0\0\0G\x09producers\x01\x0cprocessed-by\x02\x0dw\
it-component\x070.202.0\x10wit-bindgen-rust\x060.24.0";
it-component\x070.208.1\x10wit-bindgen-rust\x060.25.0";

#[inline(never)]
#[doc(hidden)]
Expand Down

0 comments on commit fc2b4ff

Please sign in to comment.