mirror of
https://github.com/selfxyz/self.git
synced 2026-02-19 02:24:25 -05:00
add CI/CD
This commit is contained in:
52
.github/workflows/action.yml
vendored
Normal file
52
.github/workflows/action.yml
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
name: Proof of Passport CI/CD
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- dev
|
||||
- main
|
||||
pull_request:
|
||||
branches:
|
||||
- dev
|
||||
- main
|
||||
jobs:
|
||||
run_circuit_tests:
|
||||
runs-on: ubuntu-latest
|
||||
environment: development
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
# Circom installation from https://github.com/erhant/circomkit/blob/main/.github/workflows/tests.yml
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install --yes \
|
||||
build-essential \
|
||||
libgmp-dev \
|
||||
libsodium-dev \
|
||||
nasm \
|
||||
nlohmann-json3-dev
|
||||
|
||||
- name: Set Node.js 18.x
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
|
||||
- name: Setup Rust
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
|
||||
- name: Download Circom Binary v2.1.8
|
||||
run: |
|
||||
wget -qO /home/runner/work/circom https://github.com/iden3/circom/releases/download/v2.1.8/circom-linux-amd64
|
||||
chmod +x /home/runner/work/circom
|
||||
sudo mv /home/runner/work/circom /bin/circom
|
||||
|
||||
- name: Print Circom version
|
||||
run: circom --version
|
||||
|
||||
- name: Install Yarn dependencies
|
||||
working-directory: ./circuits
|
||||
run: yarn install-circuits --immutable
|
||||
|
||||
- name: Run Tests
|
||||
working-directory: ./circuits
|
||||
run: yarn test
|
||||
Reference in New Issue
Block a user