fix: read data from buffer if data is not present #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: embedded_devices | |
on: | |
push: | |
tags: | |
- "v*" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macos-14 | |
env: | |
MIX_ENV: prod | |
NX_IREE_PREFER_PRECOMPILED: false | |
NX_IREE_SOURCE_DIR: ./build-cache/iree | |
IREE_GIT_REV: candidate-20240822.993 | |
strategy: | |
fail-fast: true | |
matrix: | |
build_target: | |
- ios | |
- ios_simulator | |
- visionos | |
- visionos_simulator | |
- tvos | |
- tvos_simulator | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Install asdf and tools | |
uses: asdf-vm/actions/install@v3 | |
- name: Set up Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "15.4" | |
- name: List XCode SDKs | |
run: xcodebuild -showsdks | |
- name: Setup dependencies and env | |
run: | | |
brew install ninja | |
mix local.hex --force | |
mix local.rebar --force | |
echo "NX_IREE_SOURCE_DIR=$(elixir -e 'IO.puts(Path.absname(~s(${{env.NX_IREE_SOURCE_DIR}})))')" > $GITHUB_ENV | |
- name: Cache mix dependencies | |
id: cache-mix-deps | |
uses: actions/cache@v4 | |
with: | |
key: deps-${{ hashFiles('mix.lock') }} | |
path: | | |
./deps | |
- name: Get mix deps | |
if: steps.cache-mix-deps.outputs.cache-hit != 'true' | |
run: mix deps.get | |
- name: Cache IREE dir | |
id: cache-iree-dir | |
uses: actions/cache@v4 | |
with: | |
key: iree-dir-${{ env.IREE_GIT_REV }} | |
path: | | |
${{ env.NX_IREE_SOURCE_DIR }} | |
- name: Clone IREE | |
if: steps.cache-iree-dir.outputs.cache-hit != 'true' | |
run: make clone_iree | |
- name: Compile Host | |
run: BUILD_IREE_RUNTIME=true ./scripts/build_and_package.sh --target=host | |
- name: Compile | |
run: BUILD_IREE_RUNTIME=false ./scripts/build_and_package.sh --target=${{ matrix.build_target }} | |
- name: Release Artifacts | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
./iree-runtime/artifacts/*.tar.gz |