Skip to content

Commit 2bc16f9

Browse files
committed
Merge branch 'QA-Test' into flyover-2.3.0
2 parents f41fec7 + dfcffb0 commit 2bc16f9

File tree

16 files changed

+42
-111
lines changed

16 files changed

+42
-111
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @Luisfc68 @MaximStanciu8 @gsoares85 @Dominikkq @AndresQuijano
1+
* @rsksmart/xbridges

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@ updates:
99
directory: "/"
1010
schedule:
1111
interval: "daily"
12+
target-branch: QA-Test
13+
groups:
14+
dependencies:
15+
dependency-type: production
16+
dev-dependencies:
17+
dependency-type: development
1218
- package-ecosystem: docker
1319
directory: "/"
1420
schedule:
1521
interval: "daily"
22+
target-branch: QA-Test

.github/workflows/e2e.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ jobs:
2222
go-version-file: 'go.mod'
2323

2424
- name: Update env file
25-
env:
26-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27-
run: cd docker-compose/local/ && ./gh-action-env.sh $GITHUB_TOKEN
25+
run: cd docker-compose/local/ && ./gh-action-env.sh
2826

2927
- name: Building LPS environment...
3028
run: cd docker-compose/local/ && LPS_STAGE=regtest ./lps-env.sh up

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ pwd.txt
1717
test/integration/integration-test.config.json
1818
integration/geth_keystore
1919

20-
/docker-compose/lbc-deployer/liquidity-bridge-contract/
2120
keystore/
2221
build/
2322
/utils/*

docker-compose/lbc-deployer/Dockerfile

Lines changed: 0 additions & 28 deletions
This file was deleted.

docker-compose/lbc-deployer/deploy-lbc.sh

Lines changed: 0 additions & 15 deletions
This file was deleted.

docker-compose/lbc-deployer/truffle-config.patch

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
services:
22
lbc-deployer:
3-
build:
4-
context: ../lbc-deployer
5-
secrets:
6-
- gh_token
7-
args:
8-
LBC_GIT_BRANCH: "${LBC_GIT_BRANCH:-master}"
9-
image: lbc-deployer:latest
3+
image: ghcr.io/rsksmart/liquidity-bridge-contract:${LBC_VERSION}
104
container_name: lbc-deployer01
115
environment:
6+
- NETWORK_NAME=rskRegtest
7+
- REGTEST_RPC_URL=${RSK_ENDPOINT}
128
- LPS_STAGE
139
networks:
1410
- net_lps
15-
secrets:
16-
gh_token:
17-
file: ./gh_token.txt

docker-compose/local/docker-compose.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@ services:
3131
- ${POWPEG_PEGIN_HOME:-./volumes/powpeg/pegin}/logs:/home/powpeg/logs
3232
networks:
3333
- net_lps
34-
depends_on:
35-
rskj:
36-
condition: service_healthy
37-
bitcoind:
38-
condition: service_healthy
3934
command:
4035
[
4136
"java",
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
#!/bin/bash
22

3-
TOKEN=$1
4-
sed -i "s/GITHUB_TOKEN=/GITHUB_TOKEN=$TOKEN/g" ../../sample-config.env
5-
sed -i 's/ENABLE_MANAGEMENT_API=false/ENABLE_MANAGEMENT_API=true/g' ../../sample-config.env
3+
sed -i 's/ENABLE_MANAGEMENT_API=false/ENABLE_MANAGEMENT_API=true/g' ../../sample-config.env

0 commit comments

Comments
 (0)