Skip to content

Commit

Permalink
Merge pull request #488 from dveeden/ci
Browse files Browse the repository at this point in the history
Add GitHub actions
  • Loading branch information
akopytov committed May 15, 2023
2 parents 8e33758 + 0139aa5 commit b4aa9f1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI
on: [push, pull_request]

jobs:
build:
strategy:
matrix:
os: [ ubuntu-22.04, ubuntu-20.04 ]
runs-on: ${{ matrix.os }}
name: Build on ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Autogen
run: ./autogen.sh
- name: Configure
run: ./configure
- name: Build
run: make
- name: MySQL version
run: mysql_config --version
- name: Sysbench version
run: ./src/sysbench --version
- name: Test
run: make test

0 comments on commit b4aa9f1

Please sign in to comment.