Skip to content

Commit

Permalink
ci(aarch64-unknown-linux-gnu): add pkg-config
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Jan 27, 2025
1 parent 18a9923 commit bdf84f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
setup: |
sudo apt-get update
sudo apt-get install -y gcc-aarch64-linux-gnu build-essential cmake openssl libssl-dev ca-certificates gcc libc6 perl
sudo apt-get install -y gcc-aarch64-linux-gnu build-essential cmake openssl libssl-dev ca-certificates gcc libc6 perl pkg-config
build: yarn build --target aarch64-unknown-linux-gnu
# - host: ubuntu-latest
# target: armv7-unknown-linux-gnueabihf
Expand Down
2 changes: 2 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,8 @@ export class Website {
withExternalDomains(externalDomains?: Array<string> | undefined | null): this
/** Use stealth mode for the request. This does nothing without chrome. */
withStealth(stealthMode?: boolean | undefined | null): this
/** Dangerously accept invalid certificates - this should be used as a last resort. */
withDangerAcceptInvalidCerts(acceptInvalidCerts?: boolean | undefined | null): this
/** Set the crawling budget */
withBudget(budget?: Record<string, number> | undefined | null): this
/** Set the max redirects allowed for request. */
Expand Down

0 comments on commit bdf84f1

Please sign in to comment.