Skip to content

Commit

Permalink
yay inconsistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Nov 2, 2020
1 parent f867a1e commit c2a9430
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
parameters:
target:
type: string
dir_target:
type: string
arch:
type: string
packages:
Expand All @@ -46,7 +48,7 @@ jobs:
RUSTFLAGS: -D warnings
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUNNER: qemu-aarch64 -L /usr/aarch64-linux-gnu
PKG_CONFIG_PATH: /usr/lib/<< parameters.arch >>-linux-gnu/pkgconfig
PKG_CONFIG_PATH: /usr/lib/<< parameters.dir_target >>-linux-gnu/pkgconfig
PKG_CONFIG_ALLOW_CROSS: 1
steps:
- checkout
Expand Down Expand Up @@ -84,10 +86,12 @@ workflows:
- cross:
name: aarch64
target: aarch64-unknown-linux-gnu
dir_target: aarch64
arch: arm64
packages: gcc-aarch64-linux-gnu qemu-user
- cross:
name: x86
target: i686-unknown-linux-gnu
dir_target: i386
arch: i386
packages: gcc-multilib

0 comments on commit c2a9430

Please sign in to comment.