-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -738,3 +738,27 @@ jobs: | |
artifacts/uarch-riscv-tests-json-logs-*.tar.gz | ||
artifacts/cartesi-machine-*.deb | ||
artifacts/uarch-ram.bin | ||
build_homebrew: | ||
name: Build (homebrew) | ||
runs-on: macos-12 | ||
steps: | ||
- name: Checkout machine emulator source code | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: Install dependencies | ||
run: | ||
brew install llvm@12 automake boost libomp wget cmake pkg-config grpc zlib openssl [email protected] libb64 nlohmann-json luarocks | ||
luarocks --lua-dir=$(brew --prefix)/opt/[email protected] install lpeg | ||
luarocks --lua-dir=$(brew --prefix)/opt/[email protected] install dkjson | ||
luarocks --lua-dir=$(brew --prefix)/opt/[email protected] install luasocket | ||
luarocks --lua-dir=$(brew --prefix)/opt/[email protected] install luasec | ||
luarocks --lua-dir=$(brew --prefix)/opt/[email protected] install luaposix | ||
luarocks --lua-dir=$(brew --prefix)/opt/[email protected] install md5 | ||
- name: Build | ||
run: make submodules | ||
make downloads | ||
make dep | ||
make | ||
make install |