Skip to content

Commit

Permalink
Setup Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
lthms committed Dec 31, 2023
1 parent f9dc855 commit f51c5c5
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: build
run-name: Build Spatial Shell
on: [push]
jobs:
build_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
ocaml_compiler: [ocaml.5.0.0, ocaml.5.1.1]
steps:
- uses: actions/checkout@v4
- name: Install system dependencies
run: sudo apt install opam scdoc
- name: Initialize Opam
run: opam init -n --bare
- name: Install dependencies
run: make build-deps OCAML_COMPILER="${{ matrix.ocaml_compiler }}"
- name: Build Spatial Shell
run: |
eval $(opam env)
make
build_static:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install system dependencies
run: sudo apt install opam scdoc musl-dev
- name: Initialize Opam
run: opam init -n --bare
- name: Build static binaries
run: ./scripts/prepare-release-artifacts.sh
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
path: _artifacts/spatial-shell-*.tar.gz
2 changes: 1 addition & 1 deletion scripts/prepare-release-artifacts.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/sh
#!/usr/bin/bash

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
Expand Down

0 comments on commit f51c5c5

Please sign in to comment.