mdbx-ci: use github actions instead of fallen travis-ci.

Change-Id: I091635fc16d7141bafe350d36fa8943e91807097
This commit is contained in:
Leonid Yuriev 2021-01-26 02:05:17 +03:00
parent f2b9babfd3
commit c918c98ffa
3 changed files with 21 additions and 2 deletions

View File

@ -844,6 +844,7 @@ lyuryev
lz lz
machdep machdep
machineid machineid
macos
MACROFILE MACROFILE
MADV MADV
madvise madvise
@ -1695,6 +1696,7 @@ unmap
unmapping unmapping
Unpoisoning Unpoisoning
unregister unregister
unshallow
unspill unspill
unspilling unspilling
unsync unsync

18
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
#, windows-latest
os: [ubuntu-latest, macos-latest, ubuntu-16.04]
steps:
- uses: actions/checkout@v2
- name: fetch tags
run: git fetch --unshallow --tags --prune
- name: make check
run: make --keep-going all && MALLOC_CHECK_=7 MALLOC_PERTURB_=42 make --keep-going check
shell: bash

View File

@ -4,10 +4,9 @@ on:
jobs: jobs:
build: build:
name: Spell checking
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v2.0.0 - uses: actions/checkout@v2
with: with:
fetch-depth: 5 fetch-depth: 5
- uses: check-spelling/check-spelling@prerelease - uses: check-spelling/check-spelling@prerelease