Skip to content
Closed
Show file tree
Hide file tree
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
25 changes: 4 additions & 21 deletions .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,13 @@ runs:
steps:
- run: sudo apt-get update
shell: bash
- run: sudo apt-get install -y build-essential gcc-multilib python3-pip
- run: sudo apt-get install -y build-essential gcc-multilib python3-pip file
shell: bash
- run: sudo apt-get install -y astyle
shell: bash
- run: |
# NOTE: liburing not packaged for ubuntu-20.04
git clone https://github.com/axboe/liburing.git liburing
cd liburing
./configure
make
sudo make install
- run: sudo apt-get install -y liburing-dev
shell: bash
- run: |
# NOTE: the distro package isn't current enough (ubuntu-20.04)
git clone https://github.com/perltidy/perltidy.git perltidy
cd perltidy
perl Makefile.PL
make
sudo make install
echo "/usr/local/bin" >> $GITHUB_PATH
- run: sudo apt-get install -y perltidy
shell: bash
- run: |
# NOTE: the distro package isn't current enough (ubuntu-20.04)
sudo python3 -m pip install --upgrade pip
sudo python3 -m pip install yapf
echo "$HOME/.local/bin" >> $GITHUB_PATH
- run: sudo apt-get install -y python3-yapf
shell: bash
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on: ["push", "pull_request"]
jobs:
syntax:
name: Check Syntax
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout from GitHub
uses: actions/checkout@v2
Expand All @@ -21,7 +21,7 @@ jobs:
run: ./tools/check-syntax -f && git diff --exit-code
build:
name: Build Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Checkout from GitHub
uses: actions/checkout@v2
Expand Down
Loading