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

[CI] Enable ARM64 build in CI #2699

Merged
merged 9 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ on:
branches: [ main ]

jobs:
arm_test:
marcalff marked this conversation as resolved.
Show resolved Hide resolved
name: CMake test on ARM (without otlp-exporter)
marcalff marked this conversation as resolved.
Show resolved Hide resolved
runs-on: actuated-arm64-4cpu-16gb
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: setup
env:
CC: /usr/bin/gcc-10
CXX: /usr/bin/g++-10
run: |
sudo -E ./ci/setup_ci_environment.sh
sudo -E ./ci/setup_googletest.sh
- name: run cmake tests (without otlp-exporter)
env:
CC: /usr/bin/gcc-10
CXX: /usr/bin/g++-10
run: |
./ci/do_ci.sh cmake.test
cmake_test:
name: CMake test (without otlp-exporter)
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions ci/setup_ci_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ set -e
apt-get update
apt-get install --no-install-recommends --no-install-suggests -y \
build-essential \
cmake \
g++-10 \
gcc-10 \
marcalff marked this conversation as resolved.
Show resolved Hide resolved
ca-certificates \
wget \
git \
Expand Down