Skip to content
Merged
Changes from all 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
26 changes: 14 additions & 12 deletions .github/workflows/build_and_test_on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,23 @@ name: build and test

jobs:
build_and_test:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install required packages
run: sudo apt-get update && sudo apt-get install -y
git
bash
cmake
make
g++
python3-dev
python3-distutils
autoconf
build-essential
libjemalloc-dev
run: |
sudo apt-get update
sudo apt-get install -y \
git \
bash \
cmake \
make \
g++ \
python3-dev \
python3-venv \
autoconf \
build-essential \
libjemalloc-dev
- name: Init and update submodules
run: git submodule update --init --recursive
- name: Build odgi
Expand Down