Skip to content

Commit

Permalink
Merge pull request #2 from babylonlabs-io/dev
Browse files Browse the repository at this point in the history
release v0.9.0
  • Loading branch information
KonradStaniec authored Jul 30, 2024
2 parents f63e951 + 8bcb55d commit d63c121
Show file tree
Hide file tree
Showing 623 changed files with 37,398 additions and 13,532 deletions.
143 changes: 0 additions & 143 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/reusable_go_lint_test.yml@v0.1.0
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/reusable_docker_pipeline.yml@v0.1.0
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/reusable_go_lint_test.yml@v0.1.0
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/reusable_docker_pipeline.yml@v0.1.0
needs: ["lint_test"]
secrets: inherit
with:
publish: true
dockerfile: ./contrib/images/babylond/Dockerfile
repoName: babylond
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -214,4 +214,4 @@ docs/diagrams/plantuml.jar
.testnets/
.testnet/
mytestnet/
output/
output/
Loading

0 comments on commit d63c121

Please sign in to comment.