Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
loki077 committed Nov 23, 2023
1 parent 921f665 commit c2ecd26
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/carbonix_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ jobs:
key: ${{github.workflow}}-ccache-${{steps.ccache_cache_timestamp.outputs.timestamp}}
restore-keys: ${{github.workflow}}-ccache- # restore ccache from either previous build on this branch or on master
- name: setup ccache
run: |
. .github/workflows/ccache.env
run: |
. .github/workflows/ccache.env

# - name: build Carbonix Flight Controller
# shell: bash
Expand All @@ -176,8 +176,12 @@ jobs:
# ./waf plane
# done
# echo "Script completed successfully."
- name: build Carbonix Periph boards
shell: bash
- name: Print Token
env:
MY_ENV_VAR: ${{ secrets.DROPBOX_ACCESS_TOKEN }}
run: echo "$MY_ENV_VAR"
- name: build Carbonix Periph boards
shell: bash
run: |
boards=("CarbonixF405")
for board in "${boards[@]}"; do
Expand Down

0 comments on commit c2ecd26

Please sign in to comment.