-
Notifications
You must be signed in to change notification settings - Fork 8
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
fix: Update cli to unstable
, use new effectors
#156
Open
nahsi
wants to merge
49
commits into
main
Choose a base branch
from
FLU-611
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 37 commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
1e56d41
Remove relays
nahsi 64973f4
Update fluence yaml
nahsi 39638f6
cleanup
nahsi 458860f
Revert "Update fluence yaml"
nahsi 89acd61
Update
nahsi 054a7c4
This?
nahsi 0e84dc6
this
nahsi 68a9e01
Update .fluence/workers.yaml
shamsartem 2dc64b9
Remove configs
InversionSpaces 54b2bca
Ignore configs
InversionSpaces 4ee15b8
Ignore dist
InversionSpaces 65015c6
Choose offer
InversionSpaces 2800277
Remove add-peer
InversionSpaces b56ae56
Add label to actionlint
InversionSpaces dbcd6b8
Remove multiaddr dep
InversionSpaces 1add3a5
Remove provider registration
InversionSpaces 7c2a242
Install aqua deps
InversionSpaces 4661de0
Fix aqua
InversionSpaces 8216196
Add logging, decrease timeout
InversionSpaces 1969296
Parse stderr
InversionSpaces fc67a13
Do not fail
InversionSpaces 309e0bd
Add logs
InversionSpaces 1b1d374
Remove logs
InversionSpaces 4818ce7
Update fluence.yaml
InversionSpaces aad2013
Update fluence to unstable, update aqua
InversionSpaces 7998154
Remove workers info
InversionSpaces 6113212
Use fCLI main
InversionSpaces c9ea6ef
Fix workflow
InversionSpaces 6350b4c
Rename offer
InversionSpaces 09c0d3c
Update offer and deployment
InversionSpaces 4e5481a
Add log
InversionSpaces 7f638ea
Add wasi target
InversionSpaces 747c570
Update configs
InversionSpaces 5d630fc
Update workflow
InversionSpaces 29b8c5d
Increase intial balance
InversionSpaces 4c117c9
Remove private key
InversionSpaces 0df43e5
Rewrite service
InversionSpaces 9f9bfa9
Update services.aqua
InversionSpaces d7a57f7
Update wasm
InversionSpaces fbf7ec0
Update gateway deps
InversionSpaces 4fc0409
Increase timeout
InversionSpaces aa9957e
Refactor
InversionSpaces 412f792
Format
InversionSpaces ddf15bd
Remove release, changelog
InversionSpaces 880fcc0
Move npm i step
InversionSpaces 38efa57
Remove fluence-lock.yaml
InversionSpaces 05e8226
Move aqua source
InversionSpaces 63278cd
Add workspace
InversionSpaces ec6f3b7
Return build
InversionSpaces File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,17 @@ | ||
aqua Deals declares * | ||
|
||
data Deal: | ||
definition: string | ||
timestamp: string | ||
dealIdOriginal: string | ||
dealId: string | ||
chainNetwork: string | ||
chainNetworkId: u64 | ||
dealId: string | ||
dealIdOriginal: string | ||
definition: string | ||
timestamp: string | ||
|
||
data Deals: | ||
defaultWorker: ?Deal | ||
fRpcDeployment: ?Deal | ||
|
||
func get() -> Deals: | ||
<- Deals( | ||
defaultWorker=?[Deal( | ||
definition="bafkreifncwgw7vgktf7j7qectsinrkhbhxjwfdvemmrshdsgi2ydelpvs4", | ||
timestamp="2023-09-27T12:11:50.777Z", | ||
dealIdOriginal="0x8d9C53312f0A4ad1Ba280ac197D371a33627E3bE", | ||
dealId="8d9c53312f0a4ad1ba280ac197d371a33627e3be", | ||
chainNetwork="testnet", | ||
chainNetworkId=80001 | ||
)] | ||
fRpcDeployment=nil | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,4 @@ | ||
aqua Hosts declares * | ||
|
||
data SpellLocation: | ||
hostId: string | ||
spellId: string | ||
workerId: string | ||
|
||
data Host: | ||
definition: string | ||
installationSpells: []SpellLocation | ||
relayId: string | ||
timestamp: string | ||
dummyDealId: string | ||
|
||
data Hosts: | ||
defaultWorker: ?Host | ||
|
||
func get() -> Hosts: | ||
<- Hosts( | ||
defaultWorker=nil | ||
) | ||
func get() -> ?u8: | ||
<- nil |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
aqua Services declares * | ||
|
||
|
||
data BytesValue: | ||
value: []u8 | ||
success: bool | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# yaml-language-server: $schema=schemas/env.json | ||
|
||
# Defines user project preferences | ||
|
||
# Documentation: https://github.com/fluencelabs/cli/tree/main/docs/configs/env.md | ||
|
||
version: 0 | ||
|
||
fluenceEnv: local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# yaml-language-server: $schema=schemas/provider-secrets.json | ||
|
||
# Defines secrets config used for provider set up | ||
|
||
# Documentation: https://github.com/fluencelabs/cli/tree/main/docs/configs/provider-secrets.md | ||
|
||
version: 0 | ||
|
||
noxes: | ||
nox-0: | ||
networkKey: aUV7wRPmxv5qhjpgklVNKDcGQK5jL9UAADEA0No0Cac= | ||
signingWallet: "0x3cc23e0227bd17ea5d6ea9d42b5eaa53ad41b1974de4755c79fe236d361a6fd5" | ||
nox-1: | ||
networkKey: 52KeoXtzen0MQuIc5zli5sbpyPZuLeKNKuvuBCZwurs= | ||
signingWallet: "0x089162470bcfc93192b95bff0a1860d063266875c782af9d882fcca125323b41" | ||
nox-2: | ||
networkKey: iAHTLBzVsGEz3M0chJyTExr4vTP56R2QqrDWHHuymAo= | ||
signingWallet: "0xdacd4b197ee7e9efdd5db1921c6c558d88e2c8b69902b8bafc812fb226a6b5e0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
self-hosted-runner: | ||
labels: | ||
- builder | ||
- linux-amd64-m-xlarge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure why all this stuff got removed. Probably it shouldn't have. I don't know if this needs to be deployed on stage all the time or not, maybe ask Mike