Skip to content

Commit

Permalink
Run amd64 CI on Ubuntu 20.04
Browse files Browse the repository at this point in the history
Tests that use LD_PRELOAD hang on Ubuntu 22.04 GitHub runners
  • Loading branch information
SweetVishnya committed Mar 17, 2024
1 parent 848f4a0 commit 9db30e0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ env:
jobs:
ubuntu-latest:

runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --all-features --verbose
- name: Run tests
run: |
sudo apt update && sudo apt install -y gdb pip curl python3.10-dev llvm \
sudo apt update && sudo apt install -y gdb pip curl python3.9-dev llvm \
openjdk-17-jdk ca-certificates gnupg
pip3 install atheris
sudo mkdir -p /etc/apt/keyrings
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ env:
jobs:
ubuntu-latest:

runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v4
- name: Install Dependences
run: |
sudo apt update && sudo apt install -y gdb pip curl python3.10-dev llvm \
sudo apt update && sudo apt install -y gdb pip curl python3.9-dev llvm \
openjdk-17-jdk ca-certificates gnupg
pip3 install atheris
sudo mkdir -p /etc/apt/keyrings
Expand Down
1 change: 0 additions & 1 deletion casr/tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4233,7 +4233,6 @@ fn test_casr_java() {
}

#[test]
#[ignore]
#[cfg(target_arch = "x86_64")]
fn test_casr_java_native_lib() {
let paths = [
Expand Down

0 comments on commit 9db30e0

Please sign in to comment.