Skip to content

Commit

Permalink
CI Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelhetzel committed Aug 29, 2023
1 parent 771205e commit 08f7202
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/commit_checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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

0 comments on commit 08f7202

Please sign in to comment.