From e431fe60f85f3721d03d178770c691a65c981c02 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Tue, 5 Jan 2021 17:16:36 -0800 Subject: [PATCH] ci: move misc validate tasks from travis to gha Note that `make ci` in Travis included `make test`, but we're already doing that elsewhere (see .github/workflows/test.yml). Signed-off-by: Kir Kolyshkin --- .github/workflows/validate.yml | 17 +++++++++++++++++ .travis.yml | 1 - 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 02e3228f2..552a89647 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -117,3 +117,20 @@ jobs: run: make runcimage - name: cross run: make cross + + + misc: + runs-on: ubuntu-20.04 + steps: + - name: checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: install deps + run: | + sudo apt -qq update + sudo apt -qq install libseccomp-dev indent + - name: make validate + run: make validate + - name: make release + run: make release diff --git a/.travis.yml b/.travis.yml index bbb34594e..1dcdf9e7a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,4 +65,3 @@ before_install: script: - make - - make clean ci