Skip to content

Build

Build #12

Workflow file for this run

name: Build
on:
workflow_dispatch:
jobs:
build:
name: Build
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-13, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Crystal
uses: crystal-lang/install-crystal@v1
- name: Checkout source code
uses: actions/checkout@v4
- name: Install dependencies
run: shards install
- name: Inject slug/short variables
uses: rlespinasse/github-slug-action@v5
- name: Set architecture environment variable
run: |
if [ "$RUNNER_ARCH" == "X64" ]; then
echo "ARCH=x86_64" >> $GITHUB_ENV
elif [ "$RUNNER_ARCH" == "ARM64" ]; then
echo "ARCH=arm64" >> $GITHUB_ENV
else
echo "ARCH=unknown" >> $GITHUB_ENV
fi
- if: matrix.os == 'ubuntu-latest'
name: Build binary (Linux)
run: |
mkdir build
docker compose run --rm app crystal build src/mint.cr \
-o build/mint-${GITHUB_REF_SLUG}-linux-${ARCH} \
--static --no-debug --release
- if: startsWith(matrix.os, 'macos')
name: Build binary (macOS)
run: |
mkdir build
crystal build src/mint.cr \
-o build/mint-${GITHUB_REF_SLUG}-osx-${ARCH} \
--no-debug --release
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.os }}
path: build
- if: startsWith(github.ref, 'refs/tags/')
name: Upload to GitHub Releases
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
overwrite: true
file_glob: true
file: build/*