Forces EOL to LF for TBD files #54
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
include: | |
- os: ubuntu-latest | |
parallel: 2 | |
setup: | | |
curl -Lo llvm.tar.xz "$LLVM_URL" | |
hash=$(md5sum llvm.tar.xz | head -c 32) | |
tar -xJ --strip-components=1 -C deps/llvm -f llvm.tar.xz | |
rm llvm.tar.xz | |
echo "llvm-cache=linux-llvm-$hash" >> $GITHUB_OUTPUT | |
deps: ./build-deps.sh | |
cli: ./build-cli.sh | |
dist: ./build-dist.sh | |
artifact: nitro-linux-x86_64 | |
- os: macos-latest | |
parallel: 3 | |
setup: | | |
curl -Lo llvm.tar.xz "$LLVM_URL" | |
hash=$(md5 < llvm.tar.xz) | |
tar -xJ --strip-components=1 -C deps/llvm -f llvm.tar.xz | |
rustup target add aarch64-apple-darwin | |
rm llvm.tar.xz | |
echo "llvm-cache=mac-llvm-$hash" >> $GITHUB_OUTPUT | |
echo "CMAKE_OSX_ARCHITECTURES=x86_64;arm64" >> "$GITHUB_ENV" | |
deps: ./build-deps.sh | |
cli: ./build-cli.sh | |
dist: ./build-dist.sh | |
artifact: nitro-mac | |
- os: windows-latest | |
parallel: 2 | |
setup: | | |
Invoke-WebRequest -Uri "$env:LLVM_URL" -OutFile llvm.tar.xz | |
$hash = (Get-FileHash llvm.tar.xz).Hash | |
unxz llvm.tar.xz | |
tar -x --strip-components=1 -C deps/llvm -f llvm.tar | |
Remove-Item llvm.tar | |
echo "llvm-cache=win-llvm-$hash" >> $env:GITHUB_OUTPUT | |
deps: .\build-deps.ps1 | |
cli: .\build-cli.ps1 | |
dist: .\build-dist.ps1 | |
artifact: nitro-win-x86_64 | |
runs-on: ${{ matrix.os }} | |
env: | |
LLVM_URL: https://github.com/llvm/llvm-project/releases/download/llvmorg-17.0.2/llvm-project-17.0.2.src.tar.xz | |
CMAKE_BUILD_PARALLEL_LEVEL: ${{ matrix.parallel }} | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Clone sub-modules | |
run: git submodule update --init --recursive deps/zstd | |
- name: Set up build environment | |
run: ${{ matrix.setup }} | |
id: setup | |
- name: Restore LLVM cache | |
uses: actions/cache/restore@v3 | |
with: | |
path: deps/llvm/build | |
key: ${{ steps.setup.outputs.llvm-cache }} | |
- name: Build dependencies | |
run: ${{ matrix.deps }} | |
- name: Build CLI | |
run: ${{ matrix.cli }} | |
- name: Build distribution | |
run: ${{ matrix.dist }} | |
- name: Cache LLVM | |
uses: actions/cache/save@v3 | |
with: | |
path: deps/llvm/build | |
key: ${{ steps.setup.outputs.llvm-cache }}-${{ github.run_id }} | |
if: startsWith(github.ref, 'refs/heads/') | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.artifact }} | |
path: | | |
dist | |
!dist/.crates.toml | |
!dist/.crates2.json |