From a6201f1167d158d5a0538c3d29bc3b2bebb0a4fd Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 10 Aug 2022 11:53:05 +0200 Subject: Makefile: split presubmit_arch_other target presubmit_arch_other is now the slowest presubmit step taking 7-8 mins. Split it per OS. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c4dc4f07..79be83868 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,7 +79,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - target: [presubmit_arch_linux, presubmit_arch_freebsd, presubmit_arch_other, presubmit_arch_executor] + target: [presubmit_arch_linux, presubmit_arch_freebsd, presubmit_arch_netbsd, presubmit_arch_openbsd, presubmit_arch_darwin, presubmit_arch_windows, presubmit_arch_executor] steps: - name: checkout uses: actions/checkout@629c2de402a417ea7690ca6ce3f33229e27606a5 # v2 -- cgit mrf-deployment