Skip to content

Commit

Permalink
add workflow for ABY3
Browse files Browse the repository at this point in the history
  • Loading branch information
gutjuri committed Jan 29, 2024
1 parent ac95e56 commit 5861e63
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test-aby3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build and test the Docker container for ABY3

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

jobs:
build:
name: Build container for ABY3
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: aby3
tags: aby3
load: true
cache-from: type=gha
cache-to: type=gha,mode=max
push: false

0 comments on commit 5861e63

Please sign in to comment.