Skip to content

Commit

Permalink
Merge branch 'dev' into try-rebase-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianElvis committed Jul 30, 2024
2 parents 3d8f190 + 8bcb55d commit 6ecfdf4
Show file tree
Hide file tree
Showing 572 changed files with 9,519 additions and 4,741 deletions.
158 changes: 0 additions & 158 deletions .circleci/config.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ci

on:
push:
branches:
- '**'

jobs:
lint_test:
uses: babylonchain/.github/.github/workflows/[email protected]
with:
run-unit-tests: true
run-integration-tests: true
run-lint: true
integration-tests-command: |
sudo make test-e2e
docker_pipeline:
uses: babylonchain/.github/.github/workflows/[email protected]
secrets: inherit
with:
publish: false
dockerfile: ./contrib/images/babylond/Dockerfile
repoName: babylond
28 changes: 28 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: docker_publish

on:
push:
branches:
- 'main'
- 'dev'
tags:
- '*'

jobs:
lint_test:
uses: babylonlabs-io/.github/.github/workflows/[email protected]
with:
run-unit-tests: true
run-integration-tests: true
run-lint: true
integration-tests-command: |
sudo make test-e2e
docker_pipeline:
uses: babylonlabs-io/.github/.github/workflows/[email protected]
needs: ["lint_test"]
secrets: inherit
with:
publish: true
dockerfile: ./contrib/images/babylond/Dockerfile
repoName: babylond
Loading

0 comments on commit 6ecfdf4

Please sign in to comment.