67 lines
1.7 KiB
YAML
67 lines
1.7 KiB
YAML
name: Build Hero on Macos & Run tests
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- target: aarch64-apple-darwin
|
|
os: macos-latest
|
|
short-name: macos-arm64
|
|
- target: x86_64-apple-darwin
|
|
os: macos-13
|
|
short-name: macos-i64
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
|
|
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
|
|
- run: echo "🔎 The name of your branch is ${{ github.ref_name }} and your repository is ${{ github.repository }}."
|
|
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Vlang
|
|
run: |
|
|
git clone --depth=1 https://github.com/vlang/v
|
|
cd v
|
|
make
|
|
sudo ./v symlink
|
|
cd ..
|
|
|
|
- name: Setup Herolib
|
|
run: |
|
|
mkdir -p ~/.vmodules/freeflowuniverse
|
|
ln -s $GITHUB_WORKSPACE/lib ~/.vmodules/freeflowuniverse/herolib
|
|
|
|
echo "Installing secp256k1..."
|
|
brew install secp256k1
|
|
|
|
echo "secp256k1 installation complete!"
|
|
|
|
- name: Install and Start Redis
|
|
run: |
|
|
brew update
|
|
brew install redis
|
|
|
|
# Start Redis
|
|
redis-server --daemonize yes
|
|
|
|
# Print versions
|
|
redis-cli --version
|
|
redis-server --version
|
|
|
|
- name: Build Hero
|
|
run: |
|
|
v -w -cg -gc none -no-retry-compilation -d use_openssl -enable-globals cli/hero.v
|
|
|
|
- name: Do all the basic tests
|
|
run: |
|
|
./test_basic.vsh
|