Exit function, system works #17
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
node-version: [18.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Update cmake | |
if: matrix.os != 'macos-latest' | |
run: | | |
pip install cmake | |
cmake --version | |
- name: Install openssl | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
sudo apt-get install libssl-dev | |
- name: Install openssl | |
if: matrix.os == 'windows-latest' | |
run: | | |
choco install openssl | |
- name: Setup environment | |
if: matrix.os == 'macos-latest' | |
run: | | |
brew update | |
brew upgrade cmake | |
cmake --version | |
brew install openssl | |
- name: Installing codesign certificates | |
if: matrix.os == 'macos-latest' | |
uses: apple-actions/import-codesign-certs@v2 | |
with: | |
p12-file-base64: ${{ secrets.APPLE_CERT_DATA }} | |
p12-password: ${{ secrets.APPLE_CERT_PASSWORD }} | |
- name: Install dependencies | |
run: | | |
npm -g i cmake-js | |
npm run prepare-backend | |
npm install | |
- name: Build | |
run: npm run package |