Skip to content

Commit

Permalink
refactor: remove LOAD_SYMBOL
Browse files Browse the repository at this point in the history
  • Loading branch information
vindard committed May 9, 2024
1 parent 4aac57f commit 7aff40c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
6 changes: 3 additions & 3 deletions dev/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
# - https://docs.tilt.dev/api.html#api.allow_k8s_contexts
allow_k8s_contexts(k8s_context())

load('./tilt/init.tiltfile', 'LOAD_SYMBOL')
load('./tilt/services.tiltfile', 'LOAD_SYMBOL')
load('./tilt/tests.tiltfile', 'LOAD_SYMBOL')
include('./tilt/init.tiltfile')
include('./tilt/services.tiltfile')
include('./tilt/tests.tiltfile')
2 changes: 0 additions & 2 deletions dev/tilt/init.tiltfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
load('./config.tiltfile', 'run_apps')

LOAD_SYMBOL="<dummy-import-symbol>"

local_resource(
name='init-onchain',
labels = ['init'],
Expand Down
2 changes: 0 additions & 2 deletions dev/tilt/services.tiltfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
load('./common.tiltfile', 'buck2_dep_inputs')
load('./config.tiltfile', 'is_ci', 'run_apps', 'core_serve_env')

LOAD_SYMBOL="<dummy-import-symbol>"

dashboard_target = "//apps/dashboard:dev"
if is_ci:
dashboard_target = '//apps/dashboard:dashboard'
Expand Down
2 changes: 0 additions & 2 deletions dev/tilt/tests.tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ load('./common.tiltfile', 'buck2_dep_inputs')
load('./config.tiltfile', 'is_ci', 'run_apps', 'tests_to_run')
load('./docker.tiltfile', 'docker_groups')

LOAD_SYMBOL="<dummy-import-symbol>"

CORE_TEST_LABEL = "core"
CONSENT_TEST_LABEL = "consent"
DASHBOARD_TEST_LABEL = "dashboard"
Expand Down

0 comments on commit 7aff40c

Please sign in to comment.