Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Hajime-san committed Feb 7, 2025
1 parent d0f4a73 commit 63c1c31
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,11 @@ RUSTDOCFLAGS<<__1
__1
CC=/usr/bin/clang-${llvmVersion}
CFLAGS=$CFLAGS
if [ "$(uname -s)" = "Linux" ]; then
if [ "$(uname -m)" = "aarch64" ]; then
export PKG_CONFIG_LIBDIR=/sysroot/usr/lib/aarch64-linux-gnu/pkgconfig
fi
fi
" > $GITHUB_ENV`,
};

Expand Down Expand Up @@ -295,9 +300,8 @@ function handleMatrixItems(items: {
let runner =
"${{ (!contains(github.event.pull_request.labels.*.name, 'ci-full') && (";
runner += removeSurroundingExpression(item.skip.toString()) + ")) && ";
runner += `'${ubuntuX86Runner}' || ${
removeSurroundingExpression(item.runner)
} }}`;
runner += `'${ubuntuX86Runner}' || ${removeSurroundingExpression(item.runner)
} }}`;

// deno-lint-ignore no-explicit-any
(item as any).runner = runner;
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,11 @@ jobs:
__1
CC=/usr/bin/clang-19
CFLAGS=$CFLAGS
if [ "$(uname -s)" = "Linux" ]; then
if [ "$(uname -m)" = "aarch64" ]; then
export PKG_CONFIG_LIBDIR=/sysroot/usr/lib/aarch64-linux-gnu/pkgconfig
fi
fi
" > $GITHUB_ENV
- name: Remove macOS cURL --ipv4 flag
run: |-
Expand Down

0 comments on commit 63c1c31

Please sign in to comment.