Skip to content

Commit

Permalink
GH actionf for ABY and CBMC-GC
Browse files Browse the repository at this point in the history
  • Loading branch information
gutjuri committed Jan 29, 2024
1 parent afaad20 commit d9a0bc1
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test-aby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build and test the Docker container for ABY

on:
push:
branches: [ master ]
paths:
- aby/*
pull_request:
branches: [ master ]

jobs:
build:
name: Build container for ABY
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
- uses: docker/build-push-action@v4
with:
context: aby
tags: aby
load: true
cache-from: type=gha
cache-to: type=gha,mode=max
push: false
26 changes: 26 additions & 0 deletions .github/workflows/test-cbmc-gc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build and test the Docker container for CBMC-GC

on:
push:
branches: [ master ]
paths:
- cbmc-gc/*
pull_request:
branches: [ master ]

jobs:
build:
name: Build container for cbmc-gc
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
- uses: docker/build-push-action@v4
with:
context: cbmc-gc
tags: cbmc-gc
load: true
cache-from: type=gha
cache-to: type=gha,mode=max
push: false

0 comments on commit d9a0bc1

Please sign in to comment.