Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

integration-test: Set rust-lld as a linker only on macOS #908

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 73 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
- cron: 00 4 * * *

env:
ALPINE_VERSION: 3.20
CARGO_TERM_COLOR: always

jobs:
Expand Down Expand Up @@ -178,7 +179,49 @@ jobs:
--package aya-log-ebpf \
--feature-powerset

# Build a container image based on Alpine which:
# - Has a regular user in the `wheel` group, so we don't have to run all
# commands as root.
# - Has git installed, so the `checkout` action works.
build-container-image:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Log in to GHCR
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin

- name: Check if Docker image already exists
id: check_image
run: |
if docker pull $IMAGE_NAME; then
echo "exists=true" >> $GITHUB_ENV
else
echo "exists=false" >> $GITHUB_ENV
fi

- name: Build Alpine container image (with a regular user)
if: env.exists == 'false'
run: |
IMAGE_NAME=ghcr.io/${{ github.repository_owner }}/alpine:${{ env.ALPINE_VERSION }}

cat << 'EOF' > Dockerfile
FROM alpine:${{ env.ALPINE_VERSION }}

RUN apk update && apk add --no-cache git sudo \
&& adduser -D aya \
&& echo "aya ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers

USER aya
WORKDIR /home/aya
EOF

docker build -t $IMAGE_NAME .
docker push $IMAGE_NAME

run-integration-test:
needs:
- build-container-image
strategy:
fail-fast: false
matrix:
Expand All @@ -194,14 +237,24 @@ jobs:
- target: x86_64-unknown-linux-gnu
# We don't use ubuntu-latest because we care about the apt packages available.
os: ubuntu-22.04
- target: x86_64-unknown-linux-musl
os: ubuntu-22.04
container: ghcr.io/aya-rs/alpine:3.20
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
steps:
- name: Install git
if: runner.os == 'Linux' && contains(matrix.container, 'alpine')
run: |
set -euxo pipefail
apk add git

- uses: actions/checkout@v4
with:
submodules: recursive

- name: Install prerequisites
if: runner.os == 'Linux'
if: runner.os == 'Linux' && matrix.container == ''
# ubuntu-22.04 comes with clang 13-15[0]; support for signed and 64bit
# enum values was added in clang 15[1] which isn't in `$PATH`.
#
Expand All @@ -216,6 +269,24 @@ jobs:
sudo apt -y install gcc-multilib locate qemu-system-{arm,x86}
echo /usr/lib/llvm-15/bin >> $GITHUB_PATH

- name: Install prerequisites
if: runner.os == 'Linux' && contains(matrix.container, 'alpine')
# Use clang for building the C eBPF programs for integration tests.
# Use gcc with binutils as the linker and libgcc_s as the runtime
# library.
run: |
set -euxo pipefail
apk add \
bash \
clang \
curl \
dpkg \
gcc \
jq \
qemu-system-arm \
qemu-system-x86_64 \
wget

- name: Install prerequisites
if: runner.os == 'macOS'
# The xargs shipped on macOS always exits 0 with -P0, so we need GNU findutils.
Expand Down Expand Up @@ -317,6 +388,7 @@ jobs:
- lint
- build-test-aya
- build-test-aya-ebpf
- build-container-image
- run-integration-test
runs-on: ubuntu-latest
steps:
Expand Down
11 changes: 8 additions & 3 deletions xtask/src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,17 @@ pub fn build<F>(target: Option<&str>, f: F) -> Result<Vec<(String, PathBuf)>>
where
F: FnOnce(&mut Command) -> &mut Command,
{
// Always use rust-lld and -Zbuild-std in case we're cross-compiling.
let mut cmd = Command::new("cargo");
cmd.args(["build", "--message-format=json"]);
if let Some(target) = target {
let config = format!("target.{target}.linker = \"rust-lld\"");
cmd.args(["--target", target, "--config", &config]);
cmd.args(["--target", target]);
// Always use rust-lld on macOS hosts. See
// https://github.com/aya-rs/aya/pull/908#issuecomment-2402813711
#[cfg(target_os = "macos")]
{
let config = format!("target.{target}.linker = \"rust-lld\"");
cmd.args(["--config", &config]);
}
}
f(&mut cmd);

Expand Down
Loading