From fd7b6e73d65dabe99c974fc9042f093c85a5fb22 Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Mon, 21 Sep 2020 12:59:54 +0000 Subject: [PATCH] CI: run cross compile on all branches The github action based cross compile tests are only running when pushing to master or criu-dev. This changes this to have it run on all branches. Useful to have all CI tests running on personal CRIU checkouts on branches with other names. If I prepare a branch to create a new pull request, the cross compile tests have not been running if my branch has another name than criu-dev or master. With this change these tests will run on all branches. Signed-off-by: Adrian Reber --- .github/workflows/cross-compile.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/cross-compile.yml b/.github/workflows/cross-compile.yml index 98cf6f77f..3b007cdd0 100644 --- a/.github/workflows/cross-compile.yml +++ b/.github/workflows/cross-compile.yml @@ -1,10 +1,6 @@ name: Cross Compile Tests -on: - push: - branches: [criu-dev, master] - pull_request: - branches: [criu-dev, master] +on: [push, pull_request] jobs: build: