fix(OSP/JS/Web): Time out waiting for a servlet script to become avai… #121
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: macchina.io-ci | |
on: [push] | |
jobs: | |
ubuntu-2204-gcc-make: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: sudo apt update && sudo apt install libssl-dev python-is-python3 | |
- run: make -s -j`nproc` DEFAULT_TARGET=shared_release | |
macos-clang-make: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: brew install openssl@3 [email protected] | |
- run: PATH=/usr/local/opt/[email protected]/libexec/bin:$PATH make -s -j`sysctl -n hw.ncpu` DEFAULT_TARGET=shared_release |