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

Quick Release #1061

Merged
merged 3 commits into from
Jun 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions environments/grafana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ services:
image: grafana/promtail:2.6.1
volumes:
- /var/log:/var/log
- ./promtail-config.yml:/etc/promtail/config.yml
command: -config.file=/etc/promtail/config.yml
networks:
- source-verify
Expand Down
25 changes: 25 additions & 0 deletions environments/promtail-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
server:
http_listen_port: 9080

positions:
filename: /var/log/positions.yaml # default

clients:
- url: http://loki:3100/loki/api/v1/push

scrape_configs:
- job_name: system
static_configs:
- targets:
- localhost
labels:
job: varlogs
__path__: /var/log/*log
- job_name: nginx
static_configs:
- targets:
- localhost
labels:
job: nginx
__path__: /var/log/nginx/*log
host: promtail
2 changes: 1 addition & 1 deletion scripts/test_new_chain_support.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# from https://stackoverflow.com/questions/55839004/circleci-regex-filtering-match-within-string

NEW_CHAIN_REGEX='.*add-chain-(\d+)'
NEW_CHAIN_REGEX='.*(add|update)-chain-(\d+)'

# if CIRCLE_PR_NUMBER is NOT set (meaning it is not a PR
# from a forked repository), then CIRCLE_BRANCH will
Expand Down
2 changes: 1 addition & 1 deletion test/chains/chain-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ describe("Test Supported Chains", function () {

// ZetaChain: Athens Testnet
verifyContract(
"0x1f42652a86918fd84E74e066db94E3078d25Dd8D",
"0x52ef49D23630EF439a8177E1e966F1953f37473f",
"7001",
"ZetaChain Athens Testnet",
["shared/1_Storage.sol"],
Expand Down