Skip to content

Commit

Permalink
Begin transition to GitHub Actions
Browse files Browse the repository at this point in the history
This only builds the images.

Disable AZP.

Signed-off-by: Ry Jones <ry@linux.com>
  • Loading branch information
ryjones committed Jun 28, 2022
1 parent f87c82e commit 4e8bb4d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Cello CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build images
run: |
docker build . --file "build_image/docker/common/api-engine/Dockerfile.in" --tag hyperledger/cello-api-engine:$(date +%s)
docker build . --file "build_image/docker/common/nginx/Dockerfile.in" --tag hyperledger/cello-nginx:$(date +%s)
docker build . --file "build_image/docker/common/dashboard/Dockerfile.in" --tag hyperledger/cello-dashboard:$(date +%s)
docker build . --file "build_image/docker/agent/ansible/Dockerfile.in" --tag hyperledger/cello-ansible-agent:$(date +%s)
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ stages:
displayName: Check license and documents
jobs:
- job: CheckLicenseAndDocs
condition: false
steps:
- template: ci/check-license-and-docs.yml

- stage: ProcessComponents
displayName: ProcessComponents
condition: false
jobs:
- template: ci/process-components.yml
parameters:
Expand Down

0 comments on commit 4e8bb4d

Please sign in to comment.