Skip to content

Commit

Permalink
CI Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelhetzel committed Aug 30, 2023
1 parent dea57ba commit dff5296
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/commit_checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Edgeless Commit Checks
on:
push:
jobs:
build:
runs-on:
- self-hosted
container:
image: fedora:latest
steps:
- name: Setup Deps
run: dnf -y install curl lldb openssl openssl-devel protobuf protobuf-compiler protobuf-devel clang
- name: Setup Rust
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
- name: Load Rust
run: source "$HOME/.cargo/env"
- name: Setup Rust Dependencies
run: bash -c "rustup target add wasm32-unknown-unknown && cargo install wasm-tools"
- uses: actions/checkout@v3
- name: Build
run: bash -c "cargo build"

0 comments on commit dff5296

Please sign in to comment.