Skip to content

Commit

Permalink
Use Ubuntu 22.04 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SweetVishnya committed Dec 19, 2024
1 parent 6bf99e2 commit f5b92e0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/amd64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,17 @@ env:
jobs:
ubuntu-latest:

runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --all-features --verbose
- name: Run tests
run: |
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update && sudo apt install -y gdb pip curl python3.10-dev llvm \
openjdk-17-jdk ca-certificates gnupg
python3.10 -m pip install atheris
pip3 install atheris
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
export NODE_MAJOR=20
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,15 @@ env:
jobs:
ubuntu-latest:

runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- name: Install Dependences
run: |
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt update && sudo apt install -y gdb pip curl python3.10-dev llvm \
openjdk-17-jdk ca-certificates gnupg
python3.10 -m pip install atheris
pip3 install atheris
sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
export NODE_MAJOR=20
Expand Down

0 comments on commit f5b92e0

Please sign in to comment.