Skip to content

Commit 6da6092

Browse files
authored
Support Fermi HF (#32)
1 parent bbb3c22 commit 6da6092

27 files changed

+5038
-2660
lines changed

.github/workflows/test.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
workflow_dispatch:
78
pull_request:
89

910
jobs:
@@ -16,6 +17,11 @@ jobs:
1617
with:
1718
submodules: recursive
1819
fetch-depth: 0
20+
- name: Clean up unnecessary packages
21+
run: |
22+
sudo rm -rf "/usr/share/dotnet" || true
23+
sudo rm -rf "/usr/local/lib/android" || true
24+
sudo rm -rf "/usr/local/share/boost" || true
1925
- uses: actions/setup-go@v5
2026
with:
2127
go-version: '1.22'

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,10 @@ build-images:
175175
e2e-test: e2e-clean $(LCP_BIN) $(Signed_RustEnclave_Name) yrly
176176
LCP_BIN=$(LCP_BIN) ./tests/e2e/scripts/run_e2e_test.sh $(E2E_OPTIONS)
177177

178+
.PHONY: e2e-service
179+
e2e-service: e2e-clean $(LCP_BIN) $(Signed_RustEnclave_Name) yrly
180+
LCP_BIN=$(LCP_BIN) ./tests/e2e/scripts/run_service.sh $(E2E_OPTIONS)
181+
178182
.PHONY: e2e-clean
179183
e2e-clean:
180184
$(MAKE) -C ./tests/e2e/chains/bsc rm-oz-upgrades

0 commit comments

Comments
 (0)