Skip to content

Commit

Permalink
Merge branch 'master' of github.com:DynamoRIO/dynamorio into i7091-mu…
Browse files Browse the repository at this point in the history
…lti-indir
  • Loading branch information
derekbruening committed Feb 3, 2025
2 parents 176c41f + 3676061 commit 9abd76b
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions .github/workflows/ci-aarchxx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ jobs:
matrix:
# This job will run in parallel.
include:
- os: ubuntu-20-arm64-pre-sve
- os: ah-ubuntu_20_04-c6g_4x-50
sve: false
- os: ubuntu-20-arm64-sve
- os: ah-ubuntu_20_04-c7g_4x-50
sve: true
sve_length: 256
- os: ubuntu-20-arm64-sve
- os: ah-ubuntu_20_04-c7g_4x-50
sve: true
sve_length: 128
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -85,6 +85,30 @@ jobs:
- name: Create build directory
run: mkdir build

- name: Create build environment
run: |
sudo apt-get update && \
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
build-essential \
doxygen \
git \
libunwind-dev \
libc6-dev \
openssh-client \
openssl \
python3 \
vera++ \
zlib1g-dev
- name: Set ptrace_scope to 0
run: |
echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
- name: Check current ptrace_scope
run: |
cat /proc/sys/kernel/yama/ptrace_scope
if [[ `cat /proc/sys/kernel/yama/ptrace_scope` != "0" ]]; then echo "WARNING: ptrace_scope NOT SET TO 0"; fi
- name: Setup cmake
uses: lukka/get-cmake@latest
with:
Expand Down

0 comments on commit 9abd76b

Please sign in to comment.