From 2ddcaca389ff04536ef95fea899e8cff50020bcd Mon Sep 17 00:00:00 2001 From: Hamish Coleman Date: Fri, 20 Nov 2020 18:46:22 +0000 Subject: [PATCH] Add github CI to replace travis --- .github/workflows/main.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..7ade702 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,20 @@ +--- +# CI config for https://github.com + +name: CI + +on: [push] + +jobs: + check: + name: make test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: sudo make build-deps + - run: make patch_enable_battery + - run: make test + - run: rm -f .config + - run: make test + - run: make test.img.orig + - run: make test.report