From 505669a0af4e66920b638bdb4d9d9eef6197090d Mon Sep 17 00:00:00 2001 From: Michael Spang Date: Wed, 8 Jul 2020 10:27:18 -0400 Subject: [PATCH] Fix the mbedtls, clang, & linux-embedded builds (#1489) It appears each step is run a new shell, so the environment is lost so all build types are the same. Merge "Setup Build Type" with bootstrap so we set up the right build type. --- .github/workflows/build.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e2db605873f16d..b195a8c7d68dbc 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Setup Build Type + - name: Bootstrap run: | case $BUILD_TYPE in "main") export BOOTSTRAP_ARGUMENTS="";; @@ -37,8 +37,7 @@ jobs: *) ;; esac - - name: Bootstrap - run: scripts/build/bootstrap.sh $BOOTSTRAP_ARGUMENTS + scripts/build/bootstrap.sh $BOOTSTRAP_ARGUMENTS - name: Run Build run: scripts/build/default.sh - name: Run mbedTLS Tests