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

[BCI-2848] Added TOML support, moved tests to gauntlet, bumped deps #705

Merged
merged 50 commits into from
May 21, 2024
Merged
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
2182c93
TOML migration, refactoring, local runs
smickovskid May 14, 2024
01cc5ac
Rebase
smickovskid May 14, 2024
fed26c2
Removed outdated soak test
smickovskid May 14, 2024
39398a2
Fixing CI
smickovskid May 14, 2024
4f91c1d
Adding yarn install
smickovskid May 15, 2024
d2eb2c1
Adding yarn install
smickovskid May 15, 2024
badfce2
Adding yarn install
smickovskid May 15, 2024
7644097
Adding yarn install
smickovskid May 15, 2024
736210d
Added yarn
smickovskid May 15, 2024
568aea8
Reverted yarn
smickovskid May 15, 2024
f555ba8
Adding gauntlet dep install
smickovskid May 15, 2024
8179186
Go mod bump
smickovskid May 15, 2024
89f16d5
Bumped ctf
smickovskid May 15, 2024
e733712
Checking path
smickovskid May 15, 2024
c21d0e6
Checking path
smickovskid May 15, 2024
2cf4134
Linting and adding gauntlet action
smickovskid May 15, 2024
d238e26
Fixing CI
smickovskid May 15, 2024
06d61f4
Fixing Ci
smickovskid May 15, 2024
292b165
Fixing CI
smickovskid May 15, 2024
8cf5b1f
Fixing CI
smickovskid May 15, 2024
ddfb378
Changed default solana image
smickovskid May 15, 2024
3a38564
Docker env fix
smickovskid May 15, 2024
b036884
Go mod bump
smickovskid May 15, 2024
7796d89
Checking contracts folder
smickovskid May 16, 2024
1ef70ff
Checking dir in CI
smickovskid May 16, 2024
63537f0
Checking dir in CI
smickovskid May 16, 2024
2176e4b
Changing perms of artifacts due to mount issues
smickovskid May 16, 2024
f27ee5e
Changing perms of artifacts due to mount issues
smickovskid May 16, 2024
265f9d5
Changing perms of artifacts due to mount issues
smickovskid May 16, 2024
1425062
Changed the contracts docker path
smickovskid May 16, 2024
93205d5
Creating deploy folder prior to artifact upload
smickovskid May 16, 2024
443e504
Testing mount fix
smickovskid May 16, 2024
b7ba833
Bumped CTF actions
smickovskid May 16, 2024
7b5252d
Testing CI...
smickovskid May 16, 2024
ca665e6
Still testing CI
smickovskid May 16, 2024
88b9629
testing path
smickovskid May 16, 2024
1517a09
Added build contracts
smickovskid May 16, 2024
e5be900
Added contract download artifacts path
smickovskid May 16, 2024
e62e035
Added artifacts download
smickovskid May 16, 2024
3c5d895
Fixed round check logic
smickovskid May 16, 2024
129d588
Removed ls command
smickovskid May 16, 2024
a81266e
Fixed typo in workflow
smickovskid May 16, 2024
8a66300
Adjusted test duration logic
smickovskid May 20, 2024
6835833
Rebase and go mod tidy
smickovskid May 20, 2024
7dd922f
Added readme
smickovskid May 20, 2024
ff1204a
Incorporated feedback
smickovskid May 21, 2024
83239d1
Merge branch 'develop' into BCI-2848
aalu1418 May 21, 2024
f7ae48c
linter fixes
aalu1418 May 21, 2024
ff47af5
gomodtidy
aalu1418 May 21, 2024
539f1d1
linter issue
aalu1418 May 21, 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
linter issue
  • Loading branch information
aalu1418 committed May 21, 2024
commit 539f1d13e2f0e8a498331e50a651141b14fce283
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import SolanaCommand from './internal/solana'
import { LedgerWallet, LocalWallet } from './wallet'

const isValidURL = (url: string) => {
var pattern = new RegExp('^(https?|wss?):/')
const pattern = new RegExp('^(https?|wss?):/')
return pattern.test(url)
}
export const withProvider: Middleware = (c: SolanaCommand, next: Next) => {
Expand Down
Loading