Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
8db6110
chore: add fungible asset deployer
aeryz Sep 11, 2025
6ebc887
chore: lst contract e2es
Caglankaan Sep 18, 2025
2bc7ac5
chore: creating bond msg
Caglankaan Sep 18, 2025
ff2ce87
chore: fixed cargo issue
Caglankaan Sep 18, 2025
815c4e7
chore: fixed forge issue
Caglankaan Sep 18, 2025
44bbbf4
chore: bond works
aeryz Sep 19, 2025
aa34e5a
chore: fixed init_fetch issue
Caglankaan Sep 19, 2025
f78ac75
chore: added one unhappy path
Caglankaan Sep 19, 2025
6d7345c
chore: added one more unhappy path
Caglankaan Sep 19, 2025
45b12d0
chore: added one more unhappy path
Caglankaan Sep 19, 2025
03a2048
chore: fixed stuff
Caglankaan Sep 19, 2025
50805e4
chore: bunch of stuff
aeryz Sep 21, 2025
e163e11
chore: moar
aeryz Sep 22, 2025
3c73d8a
chore: bond test with test queue
aeryz Sep 23, 2025
3f6a55b
chore: omg tests
aeryz Sep 26, 2025
1b72033
chore: bunch of cleanups
aeryz Sep 26, 2025
760b95b
chore: moar
aeryz Oct 2, 2025
eca4d6c
chore: bunch of stuff
aeryz Oct 4, 2025
cabb6ec
chore: more e2e stuff
aeryz Oct 6, 2025
adb1d7e
chore: moar e2e
aeryz Oct 6, 2025
5d73825
chore: final changes hopefully
aeryz Oct 7, 2025
d189d37
chore: fmt
PoisonPhang Oct 7, 2025
863e354
chore: spelling
PoisonPhang Oct 7, 2025
f1e1b58
feat(ci): run all-works nightly
PoisonPhang Oct 7, 2025
931a298
chore(ci): exclude all-works from on-push
PoisonPhang Oct 7, 2025
02c746a
chore: fmt
PoisonPhang Oct 7, 2025
8a3bed5
chore: all tests are working
aeryz Oct 8, 2025
47331e2
chore: rebased
aeryz Oct 8, 2025
4e3bfa8
chore: docs
aeryz Oct 8, 2025
4952fd3
chore: final fix
aeryz Oct 8, 2025
b980383
chore: clippy
aeryz Oct 8, 2025
4d6395f
chore: moar clippy
aeryz Oct 8, 2025
eae8f41
chore: change name
aeryz Oct 8, 2025
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
20 changes: 20 additions & 0 deletions .github/workflows/nightly-e2e-lst.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
schedule:
- cron: "20 4 * * *"
workflow_dispatch:

jobs:
deploy-preview:
runs-on: ['ubuntu-latest']
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: cachix/install-nix-action@v31
with:
extra_nix_config: |
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g= union.cachix.org-1:TV9o8jexzNVbM1VNBOq9fu8NK+hL6ZhOyOh0quATy+M=
trusted-substituters = https://cache.nixos.org https://cache.garnix.io https://union.cachix.org
- name: Fetch from Cache
run: |
nix build .#checks.x86_64-linux.e2e-lst -L --option sandbox false
Loading