forked from dylan-lang/opendylan
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (40 loc) · 1.36 KB
/
build-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Build Release
on:
# Manual trigger only
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Dependencies
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
brew install autoconf automake ninja
fi
- name: Install bootstrap compiler
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
curl -LO https://github.com/dylan-lang/opendylan/releases/download/v2023.1.0/opendylan-2023.1-x86_64-linux.tar.bz2
tar xvf opendylan-2023.1-x86_64-linux.tar.bz2
fi
if [ "$RUNNER_OS" == "macOS" ]; then
curl -LO https://github.com/dylan-lang/opendylan/releases/download/v2023.1.0/opendylan-2023.1-x86_64-darwin.tar.bz2
tar xvf opendylan-2023.1-x86_64-darwin.tar.bz2
fi
echo "`pwd`/opendylan-2023.1/bin" >> $GITHUB_PATH
- name: "Build with batteries"
run: ./build/unix/release-with-batteries.sh
- uses: actions/upload-artifact@v4
with:
name: release-tarball
path: release/opendylan.tar.bz2
compression-level: 0
retention-days: 3
overwrite: true
if-no-files-found: error