This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
build(deps): bump rustix from 0.36.8 to 0.36.16 #749
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: x86_64-apple-darwin compiler | |
on: push | |
env: | |
EPOCH: 0 | |
FIREFLY_BUILD_TYPE: static | |
LLVM_LINK_LLVM_DYLIB: OFF | |
LLVM_VERSION: 15.0.7 | |
CARGO_MAKE_TOOLCHAIN: nightly-2023-02-07 | |
jobs: | |
compiler: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.CARGO_MAKE_TOOLCHAIN }} | |
override: true | |
- name: Cache Cargo | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
key: ${{ github.workflow }}-${{ github.job }}-toolchain-${{ env.CARGO_MAKE_TOOLCHAIN }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install cargo-make | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: cargo-make | |
- name: Cache LLVM | |
id: cache-llvm | |
uses: actions/cache@v2 | |
with: | |
path: ~/.local/share/llvm/firefly | |
key: llvm-15.0.7 | |
- name: Install LLVM | |
if: steps.cache-llvm.outputs.cache-hit != 'true' | |
run: | | |
mkdir -p ~/.local/share/llvm | |
pushd ~/.local/share/llvm | |
wget "https://github.com/llvm/llvm-project/releases/download/llvmorg-${LLVM_VERSION}/clang+llvm-${LLVM_VERSION}-x86_64-apple-darwin21.0.tar.xz" | |
tar -xzf "clang+llvm-${LLVM_VERSION}-x86_64-apple-darwin21.0.tar.xz" | |
mv "clang+llvm-${LLVM_VERSION}-x86_64-apple-darwin21.0" firefly | |
popd | |
echo "$(~/.local/share/llvm/firefly/bin/llvm-config --cxxflags)" | |
echo "$(~/.local/share/llvm/firefly/bin/llvm-config --ldflags)" | |
echo "$(~/.local/share/llvm/firefly/bin/llvm-config --host-target)" | |
- name: Set LLVM_PREFIX | |
run: echo "LLVM_PREFIX=$HOME/.local/share/llvm/firefly" >> $GITHUB_ENV | |
- name: Install Ninja | |
run: brew install ninja | |
- name: Build Compiler | |
uses: actions-rs/cargo@v1 | |
with: | |
command: make | |
args: firefly | |
- name: Add Compiler To Path | |
run: | | |
if [ -n "${GITHUB_PATH}" ]; then | |
echo "$PWD/bin" >> $GITHUB_PATH | |
else | |
echo "::add-path::${PWD}/bin" | |
fi | |
- name: Run compiler unit tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: "-p firefly_intern -p firefly_parser -p firefly_target -p firefly_syntax_erl -p firefly_syntax_pp" | |
- name: Run literate tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: make | |
args: test-lit |