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

[release] v1.0.4-beta #1804

Merged
merged 19 commits into from
May 22, 2023
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
665633a
use a working BCHD testnet url for unit tests (#1774)
shamardy May 1, 2023
e041dbb
fix: Enhance enable with tokens methods (#1762)
shamardy May 2, 2023
35595c6
feat: Add proxy support (#1775)
laruh May 4, 2023
e62426e
fix: update wasm build archive (#1813)
onur-ozkan May 5, 2023
6168109
fix: active/passive modes for parent coins (#1763)
onur-ozkan May 9, 2023
a1fc8f7
feat: ETH/ERC20/UTXO swaps with watcher rewards (#1750)
caglaryucekaya May 9, 2023
9847971
chore: bump mm2 to `1.0.4-beta` (#1819)
onur-ozkan May 11, 2023
1c261cd
fix: detect and resolve chain reorganization (#1728)
borngraced May 11, 2023
fbe9f16
fix: Fix nft request for wasm target (#1817)
laruh May 11, 2023
6339139
ci: optimize release compilation profile (#1821)
onur-ozkan May 11, 2023
8a0cfe8
test: revert BCHD_TESTNET_URLS to the old one that was used now that …
shamardy May 12, 2023
f8ada95
ci: add CI flows for `adex-cli` (#1818)
onur-ozkan May 12, 2023
c755e14
fix: use maker coin for maker payment instructions in taker_swap.rs (…
shamardy May 13, 2023
aea18eb
fix: watchtowers minor bugfixes (#1825)
caglaryucekaya May 15, 2023
cbf312d
feat: Support posv (#1815)
reddink May 15, 2023
0660e75
fix: Minor fixes for v1.0.4-beta release (#1827)
shamardy May 17, 2023
4f4fb19
test: update tbnb testnet url for iris swap test (#1829)
onur-ozkan May 18, 2023
4f97d69
test: Move ETH tests to the new testnet (#1828)
caglaryucekaya May 22, 2023
4971369
docs: update v1.0.4-beta date in CHANGELOG.md (#1834)
shamardy May 22, 2023
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
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ updates:
open-pull-requests-limit: 2
schedule:
# By default, Dependabot checks for new versions on Monday at a random set time for the repository
interval: weekly
interval: weekly
95 changes: 95 additions & 0 deletions .github/workflows/adex-cli.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
name: adex-cli
on: [push]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}

jobs:
code-check:
timeout-minutes: 60
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3

- name: pre scripts for ci container
run: |
git config --global --add safe.directory /__w/atomicDEX-API/atomicDEX-API
echo "/bin" >> $GITHUB_PATH
echo "/usr/bin" >> $GITHUB_PATH
echo "/root/.cargo/bin" >> $GITHUB_PATH

- name: Calculate commit hash for PR commit
if: github.event_name == 'pull_request'
run: echo "COMMIT_HASH=$(git rev-parse --short=7 ${{ github.event.pull_request.head.sha }})" >> $GITHUB_ENV

- name: Calculate commit hash for merge commit
if: github.event_name != 'pull_request'
run: echo "COMMIT_HASH=$(git rev-parse --short=7 HEAD)" >> $GITHUB_ENV

- name: Start checking code format and lint
run: |
cargo fmt --manifest-path ./mm2src/adex_cli/Cargo.toml --all -- --check
cargo clippy --manifest-path ./mm2src/adex_cli/Cargo.toml --all-targets --all-features -- --D warnings

test:
timeout-minutes: 60
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3

- name: pre scripts for ci container
run: |
git config --global --add safe.directory /__w/atomicDEX-API/atomicDEX-API
echo "/bin" >> $GITHUB_PATH
echo "/usr/bin" >> $GITHUB_PATH
echo "/root/.cargo/bin" >> $GITHUB_PATH

- name: Calculate commit hash for PR commit
if: github.event_name == 'pull_request'
run: echo "COMMIT_HASH=$(git rev-parse --short=7 ${{ github.event.pull_request.head.sha }})" >> $GITHUB_ENV

- name: Calculate commit hash for merge commit
if: github.event_name != 'pull_request'
run: echo "COMMIT_HASH=$(git rev-parse --short=7 HEAD)" >> $GITHUB_ENV

- name: Start testing
run: |
cargo test --manifest-path ./mm2src/adex_cli/Cargo.toml

build:
timeout-minutes: 60
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3

- name: pre scripts for ci container
run: |
git config --global --add safe.directory /__w/atomicDEX-API/atomicDEX-API
echo "/bin" >> $GITHUB_PATH
echo "/usr/bin" >> $GITHUB_PATH
echo "/root/.cargo/bin" >> $GITHUB_PATH

- name: Calculate commit hash for PR commit
if: github.event_name == 'pull_request'
run: echo "COMMIT_HASH=$(git rev-parse --short=7 ${{ github.event.pull_request.head.sha }})" >> $GITHUB_ENV

- name: Calculate commit hash for merge commit
if: github.event_name != 'pull_request'
run: echo "COMMIT_HASH=$(git rev-parse --short=7 HEAD)" >> $GITHUB_ENV

- name: Start building
run: |
cargo build --manifest-path ./mm2src/adex_cli/Cargo.toml
Loading