Introduce Github Action to build Darwin packages. #4
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: Darwin Package Build | |
on: [push, pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
LOG_LEVEL: debug | |
jobs: | |
dist_darwin: | |
runs-on: macos-11 | |
steps: | |
- | |
name: Select Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '13.2.1' | |
- # Reference: https://github.com/actions/checkout#Checkout-multiple-repos-side-by-side | |
name: Download distribution-scripts sources | |
uses: actions/checkout@v4 | |
with: | |
path: distribution-scripts | |
- | |
name: Download crystal sources | |
uses: actions/checkout@v4 | |
with: | |
repository: crystal-lang/crystal | |
path: crystal | |
fetch-tags: true | |
fetch-depth: 0 | |
- | |
name: Restore Omnibus Depenedcies' cache | |
uses: actions/cache@v3 | |
with: | |
path: distribution-scripts/omnibus/vendor/bundler | |
key: ${{ runner.os }}-omnibus-bundler-${{ hashFiles('distribution-scripts/omnibus/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-omnibus-bundler- | |
${{ runner.os }}- | |
- | |
name: Install Omnibus Depenedcies | |
run: | | |
cd distribution-scripts/omnibus | |
bundle install --path vendor/bundler | |
- | |
name: Create build folders | |
run: | | |
sudo mkdir -p /opt/crystal | |
sudo chown $(whoami) /opt/crystal/ | |
sudo mkdir -p /var/cache | |
sudo chown $(whoami) /var/cache | |
- | |
name: Build Darwin package | |
run: | | |
make -C distribution-scripts/darwin \ | |
OMNIBUS_OPTS="--log-level ${{ env.LOG_LEVEL }} --override use_git_caching:false" \ | |
CRYSTAL_REPO=$GITHUB_WORKSPACE/crystal \ | |
CRYSTAL_SRC=$GITHUB_WORKSPACE/crystal \ | |
CRYSTAL_SHA1=master \ | |
CRYSTAL_VERSION=1.11.0 \ | |
PACKAGE_ITERATION=1 \ | |
LLVM_VERSION=15.0.7 \ | |
PREVIOUS_CRYSTAL_RELEASE_DARWIN_TARGZ=https://github.com/crystal-lang/crystal/releases/download/1.10.1/crystal-1.10.1-1-darwin-universal.tar.gz | |
- # Reference: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#environment-files | |
name: Extract the package name to be used for the artifact name | |
run: | | |
cd distribution-scripts/darwin/build | |
ls -la | |
filename=$(ls -1 crystal-*.tar.gz) | |
echo "ARTIFACT_NAME=${filename%.tar.gz}" >> "$GITHUB_ENV" | |
- # When an Artifact is uploaded, all the files are assembled into an immutable Zip archive. | |
# https://github.com/actions/upload-artifact#zip-archives | |
name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.ARTIFACT_NAME }} | |
path: distribution-scripts/darwin/build/* | |
retention-days: 1 | |
if-no-files-found: error | |
compression-level: 0 # package is already compressed |