Skip to content

Commit

Permalink
add github action to build function images
Browse files Browse the repository at this point in the history
Signed-off-by: Shyam Jesalpura <[email protected]>
  • Loading branch information
shyamjesal authored and ustiugov committed Jan 8, 2021
1 parent 05d96a9 commit 49de389
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build_function_images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Check if the docker images of the functions build successfully

on:
workflow_dispatch:
schedule:
- cron: '0 9 * * 1'


jobs:
build_images:
name: Build function docker images
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
image: [grpc, helloworld, chameleon, pyaes, image_rotate_s3, lr_serving, json_serdes_s3, cnn_serving, rnn_serving, lr_training_s3, video_processing_s3]
steps:
- uses: actions/checkout@v2
with:
ref: master
- name: docker build images
run: |
docker build ./function-images/${{ matrix.image }}

0 comments on commit 49de389

Please sign in to comment.