mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 04:04:21 +01:00
* fix and test cheating scenario (malicious double spend) * test and fix async vtxo cheating cases * add replace statement in go.mod * Update server/internal/core/application/covenantless.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * Update server/internal/infrastructure/wallet/btc-embedded/psbt.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * Update server/test/e2e/covenant/e2e_test.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * Update server/test/e2e/covenantless/e2e_test.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * Update server/test/e2e/covenantless/e2e_test.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * remove unused * [btc-embedded] fix GetNotificationChannel * [tx-builder] fix redeem transaction fee estimator * close grpc client in tests * [application] rework listentoscannerNotification * [application][covenant] fix getConnectorAmount * [tx-builder][covenant] get connector amount from wallet * e2e test sleep time * [liquid-standalone] ListConnectorUtxos: filter by script client side * fix Makefile integrationtest * do not use cache in integration tests * use VtxoKey as argument of findForfeitTxBitcoin * wrap adversarial test in t.Run * increaste test timeout * CI: setup go 1.23.1 * CI: revert go version * add replace in server/go.mod * Update server/internal/core/application/covenant.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * remove replace * readd replace statement * fixes * go work sync * fix CI --------- Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com>
55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
name: Build and Upload Binaries and WASM
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: 1.23.1
|
|
|
|
- name: Build binaries
|
|
run: make build-all
|
|
|
|
- name: Build WASM SDK
|
|
run: |
|
|
cd pkg/client-sdk
|
|
make build-wasm
|
|
|
|
- name: Upload server binaries
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: server-binaries
|
|
path: ./server/build
|
|
if-no-files-found: error
|
|
retention-days: 5
|
|
compression-level: 6
|
|
overwrite: true
|
|
|
|
- name: Upload client binaries
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: client-binaries
|
|
path: ./client/build
|
|
if-no-files-found: error
|
|
retention-days: 5
|
|
compression-level: 6
|
|
overwrite: true
|
|
|
|
- name: Upload WASM SDK
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: wasm-sdk
|
|
path: pkg/client-sdk/build
|
|
if-no-files-found: error
|
|
retention-days: 5
|
|
compression-level: 0
|
|
overwrite: true |