v0.12.0 #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: Release | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
macos: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install Crystal | |
env: | |
HOMEBREW_NO_INSTALL_UPGRADE: 1 | |
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 | |
run: brew update && brew install openssl crystal | |
- name: Install dependencies | |
run: shards install --production --ignore-crystal-version | |
- name: Build the binary | |
env: | |
LLVM_CONFIG: /usr/local/opt/llvm@17/bin/llvm-config | |
run: shards build crystalline --release --no-debug -Dpreview_mt --stats --progress --ignore-crystal-version | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: crystalline_x86_64-apple-darwin | |
path: ./bin/crystalline | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Build the static binary | |
run: docker build -t crystalline . | |
- name: Copy binary to host | |
run: | | |
docker run -v $PWD:/app/host --rm crystalline:latest cp ./bin/crystalline ./host/crystalline | |
- name: Upload a Build Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: crystalline_x86_64-unknown-linux-musl | |
path: ./crystalline | |
release: | |
needs: [macos, linux] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
path: ./artifacts | |
- name: Compress artifacts | |
run: gzip -r ./artifacts | |
- name: Create release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Attach linux binary | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./artifacts/crystalline_x86_64-unknown-linux-musl/crystalline.gz | |
asset_name: crystalline_x86_64-unknown-linux-musl.gz | |
asset_content_type: application/gzip | |
- name: Attach macOS binary | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./artifacts/crystalline_x86_64-apple-darwin/crystalline.gz | |
asset_name: crystalline_x86_64-apple-darwin.gz | |
asset_content_type: application/gzip |