Skip to content

CI Setup

CI Setup #1

Workflow file for this run

name: Edgeless Commit Checks
on:
push:
jobs:
build:
runs-on:
- self-hosted
container:
image: fedora:latest
env:
NODE_ENV: development
ports:
- 80
volumes:
- my_docker_volume:/volume_mount
options: --cpus 1
steps:
- name: Setup DEPS
run: dnf -y install lldb openssl openssl-devel protobuf protobuf-compiler protobuf-devel clang && (curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y)
- uses: actions/checkout@v3
- name: Build
run: cargo build