Skip to content

Commit

Permalink
Merge pull request #100 from aut0/dev/lukas-disable-slow-ci
Browse files Browse the repository at this point in the history
ci: disable regressions and sanitizers on QEMU ARM64, too slow
  • Loading branch information
markfoodyburton authored Feb 11, 2025
2 parents 935c59e + 6158c55 commit 13f3c5f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 48 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/asan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,9 @@ jobs:
fail-fast: false
matrix:
version: [20.04, 22.04]
platform: [linux/amd64, linux/arm64]
platform: [linux/amd64]
target: [clang-shared-regression-asan]
steps:
- name: Install qemu-user-static
run: |
if [[ "${{ matrix.platform }}" == "linux/arm64" ]]; then
sudo apt-get update && sudo apt-get install -y qemu-user-static
fi
- name: Checkout
uses: actions/checkout@v4
- name: Build
Expand All @@ -31,14 +26,9 @@ jobs:
fail-fast: false
matrix:
version: [8, 9]
platform: [linux/amd64, linux/arm64]
platform: [linux/amd64]
target: [clang-shared-regression-asan]
steps:
- name: Install qemu-user-static
run: |
if [[ "${{ matrix.platform }}" == "linux/arm64" ]]; then
sudo apt-get update && sudo apt-get install -y qemu-user-static
fi
- name: Checkout
uses: actions/checkout@v4
- name: Build
Expand Down
14 changes: 2 additions & 12 deletions .github/workflows/regressions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,9 @@ jobs:
fail-fast: false
matrix:
version: [20.04, 22.04]
platform: [linux/amd64, linux/arm64]
platform: [linux/amd64]
target: [gcc-shared-regression, clang-shared-regression]
steps:
- name: Install qemu-user-static
run: |
if [[ "${{ matrix.platform }}" == "linux/arm64" ]]; then
sudo apt-get update && sudo apt-get install -y qemu-user-static
fi
- name: Checkout
uses: actions/checkout@v4
- name: Build
Expand All @@ -31,14 +26,9 @@ jobs:
fail-fast: false
matrix:
version: [8, 9]
platform: [linux/amd64, linux/arm64]
platform: [linux/amd64]
target: [gcc-shared-regression, clang-shared-regression]
steps:
- name: Install qemu-user-static
run: |
if [[ "${{ matrix.platform }}" == "linux/arm64" ]]; then
sudo apt-get update && sudo apt-get install -y qemu-user-static
fi
- name: Checkout
uses: actions/checkout@v4
- name: Build
Expand Down
14 changes: 2 additions & 12 deletions .github/workflows/tsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,9 @@ jobs:
fail-fast: false
matrix:
version: [20.04, 22.04]
platform: [linux/amd64, linux/arm64]
platform: [linux/amd64]
target: [clang-shared-regression-tsan]
steps:
- name: Install qemu-user-static
run: |
if [[ "${{ matrix.platform }}" == "linux/arm64" ]]; then
sudo apt-get update && sudo apt-get install -y qemu-user-static
fi
- name: Checkout
uses: actions/checkout@v4
- name: Build
Expand All @@ -31,14 +26,9 @@ jobs:
fail-fast: false
matrix:
version: [8, 9]
platform: [linux/amd64, linux/arm64]
platform: [linux/amd64]
target: [clang-shared-regression-tsan]
steps:
- name: Install qemu-user-static
run: |
if [[ "${{ matrix.platform }}" == "linux/arm64" ]]; then
sudo apt-get update && sudo apt-get install -y qemu-user-static
fi
- name: Checkout
uses: actions/checkout@v4
- name: Build
Expand Down
14 changes: 2 additions & 12 deletions .github/workflows/ubsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,9 @@ jobs:
fail-fast: false
matrix:
version: [20.04, 22.04]
platform: [linux/amd64, linux/arm64]
platform: [linux/amd64]
target: [clang-shared-regression-ubsan]
steps:
- name: Install qemu-user-static
run: |
if [[ "${{ matrix.platform }}" == "linux/arm64" ]]; then
sudo apt-get update && sudo apt-get install -y qemu-user-static
fi
- name: Checkout
uses: actions/checkout@v4
- name: Build
Expand All @@ -31,14 +26,9 @@ jobs:
fail-fast: false
matrix:
version: [8, 9]
platform: [linux/amd64, linux/arm64]
platform: [linux/amd64]
target: [clang-shared-regression-ubsan]
steps:
- name: Install qemu-user-static
run: |
if [[ "${{ matrix.platform }}" == "linux/arm64" ]]; then
sudo apt-get update && sudo apt-get install -y qemu-user-static
fi
- name: Checkout
uses: actions/checkout@v4
- name: Build
Expand Down

0 comments on commit 13f3c5f

Please sign in to comment.