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

Translators readme #805

Merged
merged 31 commits into from
Apr 5, 2024
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
968582e
release-libs on push to main
plebhash Feb 29, 2024
26b9792
add check-versioning-lib-release.sh
plebhash Mar 15, 2024
a305985
avoid files under target dir
plebhash Mar 22, 2024
d6ac089
remove roles from release-libs.yaml
plebhash Apr 2, 2024
1f149dc
run check-versioning-lib-release.sh on CI
plebhash Apr 2, 2024
abfc5da
fix release-libs.yaml
plebhash Apr 2, 2024
e4f8db8
use bash shebang on check-versioning-lib-release.sh
plebhash Apr 2, 2024
b57352b
unify jobs
plebhash Apr 2, 2024
32f47ea
fix check-versioning-lib-release.sh
plebhash Apr 2, 2024
8d6e7f1
trigger release-libs.yaml on pull_requests to main
plebhash Apr 2, 2024
475cdd6
checkout main on release-libs.yaml
plebhash Apr 2, 2024
f887e3d
revert checkout main on release-libs.yaml
plebhash Apr 2, 2024
c5bf950
fetch main and dev branches
plebhash Apr 2, 2024
9111157
trigger release-libs.yaml on pull_requests to main
plebhash Apr 2, 2024
86c7c10
simplify check-versioning-lib-release.sh
plebhash Apr 2, 2024
2ca3bf0
lint release-libs.yaml
plebhash Apr 2, 2024
52098db
Revert "remove roles from release-libs.yaml"
plebhash Apr 3, 2024
1611cdb
Merge pull request #790 from plebhash/trigger-release-lib-automatically
plebhash Apr 3, 2024
3b80c5a
modified the README in roles/translator dir
ikeogu Mar 20, 2024
3d76098
Revert "modified the README in roles/translator dir"
ikeogu Mar 20, 2024
371b8d0
modified roles/translator/readme file
ikeogu Mar 20, 2024
158b0ac
Update roles/translator/README.md
plebhash Mar 27, 2024
792651c
Update roles/translator/README.md
plebhash Mar 27, 2024
c339703
Update roles/translator/README.md
plebhash Mar 27, 2024
c4724cb
Update roles/translator/README.md
plebhash Mar 27, 2024
b931f9a
Update roles/translator/README.md
plebhash Mar 27, 2024
4172998
Update roles/translator/README.md
plebhash Mar 27, 2024
ad2cb2b
Update roles/translator/README.md
plebhash Mar 27, 2024
8000969
Update roles/translator/README.md
plebhash Mar 27, 2024
363e8ab
Update roles/translator/README.md
plebhash Mar 27, 2024
908620a
Merge branch 'dev' into translators-readme
plebhash Apr 5, 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
Revert "remove roles from release-libs.yaml"
This reverts commit d6ac089.
plebhash committed Apr 3, 2024

Verified

This commit was signed with the committer’s verified signature.
commit 52098db554d5fe6b0d8db93c53bdc276f9a064b2
25 changes: 25 additions & 0 deletions .github/workflows/release-libs.yaml
Original file line number Diff line number Diff line change
@@ -146,4 +146,29 @@ jobs:
continue-on-error: true
run: |
cd roles/roles-utils/rpc
cargo publish
- name: Publish crate jd_client
continue-on-error: true
run: |
cd roles/jd-client
cargo publish
- name: Publish crate jd_server
continue-on-error: true
run: |
cd roles/jd-server
cargo publish
- name: Publish crate mining_proxy_sv2
continue-on-error: true
run: |
cd roles/mining-proxy
cargo publish
- name: Publish crate pool_sv2
continue-on-error: true
run: |
cd roles/pool
cargo publish
- name: Publish crate translator_sv2
continue-on-error: true
run: |
cd roles/translator
cargo publish
8 changes: 5 additions & 3 deletions check-versioning-lib-release.sh
Original file line number Diff line number Diff line change
@@ -3,9 +3,6 @@
git fetch origin main
git fetch origin dev

# this list was taken from `.github/workflows/release-libs.yaml`.
# if anything changes there (crates added/removed to publishing pipeline)
# those changes should be reflected here
crates=(
"utils/buffer"
"protocols/v2/binary-sv2/no-serde-sv2/derive_codec"
@@ -28,6 +25,11 @@ crates=(
"utils/key-utils"
"roles/roles-utils/network-helpers"
"roles/roles-utils/rpc"
"roles/jd-client"
"roles/jd-server"
"roles/mining-proxy"
"roles/pool"
"roles/translator"
)

# Loop through each crate