Skip to content

Commit

Permalink
Test the github action
Browse files Browse the repository at this point in the history
  • Loading branch information
mscherer committed Jan 16, 2025
1 parent 7663679 commit 53eff56
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/check_smoke.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on: [push, pull_request]

name: Smoke test on Ubuntu

jobs:
check:
strategy:
matrix:
os: ["ubuntu-24.04", "ubuntu-24.04-arm"]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4

- name: Run build
run: |
sudo apt-get update
sudo apt-get install libgoogle-perftools-dev libunwind-dev libacl1-dev liburing-dev liburcu-dev uuid-dev
./autogen.sh
./configure
make

0 comments on commit 53eff56

Please sign in to comment.