diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..279e8db2 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,24 @@ +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 +