You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by na...@apache.org on 2023/01/24 08:05:05 UTC

[mynewt-core] branch master updated: ci: Fix targets build on Windows

This is an automated email from the ASF dual-hosted git repository.

naraj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
     new bf69f6972 ci: Fix targets build on Windows
bf69f6972 is described below

commit bf69f6972bcb8c6469f2faec7602fe6884f910bc
Author: Szymon Janc <sz...@codecoup.pl>
AuthorDate: Mon Jan 23 21:46:49 2023 +0100

    ci: Fix targets build on Windows
    
    We need to build from bash instead of windows shell.
---
 .github/workflows/build_targets.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/build_targets.yml b/.github/workflows/build_targets.yml
index 3681c0fb6..7a1870365 100644
--- a/.github/workflows/build_targets.yml
+++ b/.github/workflows/build_targets.yml
@@ -45,4 +45,5 @@ jobs:
              newt upgrade --shallow=1
              cp -r .github/targets ci_targets
       - name: Build targets
+        shell: bash
         run: ls ci_targets | xargs -n1 sh -c 'echo "Testing $0"; newt build -q $0'