Skip to content

Commit

Permalink
ci: test fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
erguotou520 committed Jan 1, 2025
1 parent 7d75454 commit 834632b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ jobs:
build: |-
set -e &&
apt-get update && apt-get install -y build-essential pkg-config libssl-dev &&
export OPENSSL_DIR=/usr &&
export OPENSSL_INCLUDE_DIR=/usr/include/openssl &&
export OPENSSL_LIB_DIR=/usr/lib &&
yarn workspace @doremijs/igit-core build --target x86_64-unknown-linux-gnu
- host: ubuntu-latest
target: x86_64-unknown-linux-musl
Expand All @@ -70,13 +73,19 @@ jobs:
build: |-
set -e &&
apt-get update && apt-get install -y build-essential pkg-config libssl-dev &&
export OPENSSL_DIR=/usr &&
export OPENSSL_INCLUDE_DIR=/usr/include/openssl &&
export OPENSSL_LIB_DIR=/usr/lib &&
yarn workspace @doremijs/igit-core build --target aarch64-unknown-linux-gnu
- host: ubuntu-latest
target: aarch64-unknown-linux-musl
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
build: |-
set -e &&
apk add --no-cache openssl-dev pkgconfig &&
apk add --no-cache openssl-dev pkgconfig build-base &&
export OPENSSL_DIR=/usr &&
export OPENSSL_INCLUDE_DIR=/usr/include/openssl &&
export OPENSSL_LIB_DIR=/usr/lib &&
rustup target add aarch64-unknown-linux-musl &&
yarn workspace @doremijs/igit-core build --target aarch64-unknown-linux-musl
- host: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion packages/doc/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@ export default defineConfig({
}),
],
adapter: cloudflare({
imageService: 'cloudflare'
// imageService: 'cloudflare',
}),
});

0 comments on commit 834632b

Please sign in to comment.