v0.3.7 #304
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: macos-x86_64 | |
on: | |
pull_request: | |
paths-ignore: | |
- '**/*.md' | |
- 'examples/**/*.livemd' | |
- 'examples/*.livemd' | |
push: | |
branches: | |
- main | |
- test-* | |
- macos-ci-* | |
paths-ignore: | |
- '**/*.md' | |
- 'examples/**/*.livemd' | |
- 'examples/*.livemd' | |
- 'nerves/**' | |
- '.github/FUNDING.yml' | |
- '.github/workflows/nerves-*' | |
- '.github/workflows/linux-*.yml' | |
- '.github/workflows/macos-precompiled.yml' | |
- '.github/workflows/test-*.yml' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
rebar3_compile: | |
runs-on: macos-12 | |
env: | |
TFLITE_BEAM_CORAL_SUPPORT: "true" | |
TFLITE_BEAM_PREFER_PRECOMPILED: "false" | |
OTP_VERSION: "26.2.1" | |
ELIXIR_VERSION: "1.16.0" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Erlang and Elixir | |
run: | | |
export HOMEBREW_NO_AUTO_UPDATE=1 | |
brew install autoconf automake coreutils curl git openssl asdf | |
asdf plugin add erlang https://github.com/asdf-vm/asdf-erlang.git | |
asdf plugin-add elixir https://github.com/asdf-vm/asdf-elixir.git | |
export KERL_CONFIGURE_OPTIONS="--disable-debug --without-javac" | |
asdf install erlang "${OTP_VERSION}" | |
asdf install elixir "${ELIXIR_VERSION}" | |
asdf global erlang "${OTP_VERSION}" | |
asdf global elixir "${ELIXIR_VERSION}" | |
source $(brew --prefix asdf)/libexec/asdf.sh | |
mix local.hex --force | |
mix local.rebar --force | |
wget https://s3.amazonaws.com/rebar3/rebar3 && chmod +x rebar3 | |
./rebar3 local install | |
- name: Compile | |
run: | | |
source $(brew --prefix asdf)/libexec/asdf.sh | |
export PATH="~/.cache/rebar3/bin:$PATH" | |
rebar3 deps | |
rebar3 compile |