Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: declare v0 endpoint added #20

Merged
merged 51 commits into from
Dec 24, 2024
Merged
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
9899f06
feat : code update as per zaun
ocdbytes Nov 24, 2024
9c27a4d
feat : updated workflows
ocdbytes Nov 24, 2024
197e858
feat : updated workflows
ocdbytes Nov 24, 2024
aa047d4
feat : updated workflows
ocdbytes Nov 24, 2024
df89dee
feat : updated workflows
ocdbytes Nov 24, 2024
34d3c92
feat : updated workflows
ocdbytes Nov 24, 2024
1fc5373
feat : updated workflows
ocdbytes Nov 24, 2024
aa6b5a1
zaun deps update
ocdbytes Nov 25, 2024
1240540
Remove artifacts from git tracking
ocdbytes Nov 25, 2024
7890b64
dep update
ocdbytes Nov 25, 2024
e2881a8
update
ocdbytes Dec 2, 2024
c72343c
feat : updated and refactored the code
ocdbytes Dec 2, 2024
8935d95
fix : deps and lint
ocdbytes Dec 2, 2024
3c56da4
feat : config fix
ocdbytes Dec 2, 2024
64df784
feat : updated upgrade code for tests
ocdbytes Dec 3, 2024
7c02a0a
feat : updated braavos code and added upgrade functionality
ocdbytes Dec 3, 2024
14b905a
ci debug
ocdbytes Dec 3, 2024
ecb6a42
feat : added debug logs
ocdbytes Dec 4, 2024
f8bb6d4
feat : updated madara spwan process in tests
ocdbytes Dec 4, 2024
4698435
feat : updated build process for madara and spawn process
ocdbytes Dec 4, 2024
06873f1
feat : updated build process
ocdbytes Dec 4, 2024
fd600e0
fix: declare v0 endpoint added
Dec 10, 2024
8177f6e
fix: docker
Dec 11, 2024
21d5b14
resolved comments 1
ocdbytes Dec 11, 2024
a8c49e5
fix : test and bridge
ocdbytes Dec 12, 2024
5212c16
feat : refactor
ocdbytes Dec 12, 2024
2214577
chore: updated the docker file
Dec 13, 2024
e3aa504
chore: dockerfile updated
Dec 15, 2024
3e2928d
chore: updating docker file
Dec 15, 2024
34f8297
chore: updated the setup-linux
Dec 15, 2024
ae64ff3
chore: undo the makefile changes
Dec 15, 2024
daa74d9
chore: updated makefile
Dec 17, 2024
3fb4a0d
Merge branch 'aj/update/zaun-new-build' into fix/declare-v0
Mohiiit Dec 17, 2024
9297ef8
chore: rust build updated
Dec 17, 2024
91611bb
Merge branch 'fix/declare-v0' of https://github.com/madara-alliance/m…
Dec 17, 2024
f99f76b
chore: asdf installation updated in rust-build workflow
Dec 17, 2024
e502537
chore: updated the build and test workflow to resume built binary and…
Dec 17, 2024
1a33d80
chore: optimized the files uploaded in build workflow
Dec 17, 2024
17c8b27
refactor: readme and makefile updated
Dec 18, 2024
4caddc6
chore(readme): updated
Dec 18, 2024
90ba8be
chore: head restored, workflow updated
Dec 19, 2024
c06bff2
chore: make updated for bravoos account
Dec 19, 2024
425894f
chore: readme udpated and test-bridge's scarb version updated
Dec 20, 2024
50d9519
chore: test bridge workflow updated
Dec 20, 2024
026c90a
chore: madara fixed commit added
Dec 20, 2024
34190de
chore: formatting, refactoring makefile for code abstraction, comment…
Dec 23, 2024
30fa6a8
chore: main merged and test workflow updated
Dec 23, 2024
1fea785
chore: github workflow updated
Dec 23, 2024
63f1064
chore: linting and formatting
Dec 23, 2024
9a48ff4
chore: madara commit updated
Dec 23, 2024
86aec63
fix: madara command fixed
Dec 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: updated the build and test workflow to resume built binary and…
… artifacts
  • Loading branch information
mohiiit committed Dec 17, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit e502537d071f0c9aab60638471020c07ef7c30bf
9 changes: 9 additions & 0 deletions .github/workflows/rust-build.yml
Original file line number Diff line number Diff line change
@@ -61,3 +61,12 @@ jobs:
git submodule update --init --recursive
make artifacts-linux
cargo build --release --workspace

# Add artifact upload step
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: |
target/release/
target/artifacts/
10 changes: 8 additions & 2 deletions .github/workflows/test-bridge.yml
Original file line number Diff line number Diff line change
@@ -88,10 +88,16 @@ jobs:
run: |
cargo llvm-cov clean --workspace

- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: build-artifacts
path: |
target/release/
target/artifacts/

- name: Run llvm-cov
run: |
git submodule update --init --recursive
make artifacts-linux
cargo llvm-cov nextest --release --lcov --output-path lcov.info

- name: Coveralls
Loading