Skip to content

Commit

Permalink
TODO: fix missing symbol with esp
Browse files Browse the repository at this point in the history
  • Loading branch information
mattnite committed Apr 26, 2024
1 parent 1a2a2e1 commit 62a2c10
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:
matrix:
os: [
#ubuntu-latest,
#windows-latest,
ubuntu-latest,
windows-latest,
macos-latest,
]
steps:
Expand All @@ -34,6 +34,7 @@ jobs:
run: zig build run-bsp-tests -Doptimize=ReleaseSmall

- name: Dry run packaging
if: ${{ matrix.os == 'macos-latest' }}
run: |
MICROZIG_VERSION=$(zig build package -- get-version)
echo microzig version: $MICROZIG_VERSION
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ on:

jobs:
deploy-packages:
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- name: Extract tag name
run: echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV

- name: Checkout
uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -39,4 +42,9 @@ jobs:
REMOTE_PORT: ${{ secrets.DEPLOY_PORT }}
TARGET: "."

# TODO: create github release
- name: Create Release Draft
uses: ncipollo/release-action@v1
with:
artifactErrorsFailBuild: true
draft: true
generateReleaseNotes: true
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const example_dep_names: []const []const u8 = &.{
//"examples/microchip/avr",
"examples/gigadevice/gd32",
"examples/stmicro/stm32",
"examples/espressif/esp",
//"examples/espressif/esp",
"examples/raspberrypi/rp2040",
};

Expand Down

0 comments on commit 62a2c10

Please sign in to comment.