Skip to content

Commit

Permalink
Fix the mbedtls, clang, & linux-embedded builds (#1489)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mspang authored Jul 8, 2020
1 parent a310bc4 commit 505669a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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="";;
Expand All @@ -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
Expand Down

0 comments on commit 505669a

Please sign in to comment.