Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethereum-package
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
ethereum-package
Commits
db0cbde9
Unverified
Commit
db0cbde9
authored
Nov 24, 2022
by
Gyanendra Mishra
Committed by
GitHub
Nov 24, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #22 from kurtosis-tech/gyani/render
adjust to new render templates config
parents
7311d884
af666f88
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
22 deletions
+5
-22
config.yml
.circleci/config.yml
+3
-5
changelog.md
docs/changelog.md
+1
-0
run.sh
scripts/run.sh
+0
-16
shared_utils.star
src/shared_utils/shared_utils.star
+1
-1
No files found.
.circleci/config.yml
View file @
db0cbde9
version
:
2.1
version
:
2.1
orbs
:
orbs
:
kurtosis-docs-checker
:
kurtosis-tech/docs-checker@0.2.
0
kurtosis-docs-checker
:
kurtosis-tech/docs-checker@0.2.
1
executors
:
executors
:
ubuntu_vm
:
ubuntu_vm
:
...
@@ -14,7 +14,7 @@ executors:
...
@@ -14,7 +14,7 @@ executors:
# images), so we run everything inside a single job.
# images), so we run everything inside a single job.
# See also: https://discuss.circleci.com/t/can-docker-images-be-preserved-between-jobs-in-a-workflow-without-a-manual-load-save/23388/12
# See also: https://discuss.circleci.com/t/can-docker-images-be-preserved-between-jobs-in-a-workflow-without-a-manual-load-save/23388/12
jobs
:
jobs
:
run_star
tosis
:
run_star
lark
:
executor
:
ubuntu_vm
executor
:
ubuntu_vm
steps
:
steps
:
...
@@ -43,14 +43,12 @@ workflows:
...
@@ -43,14 +43,12 @@ workflows:
filters
:
filters
:
branches
:
branches
:
ignore
:
ignore
:
-
develop
-
master
-
master
-
run_star
tosis
:
-
run_star
lark
:
context
:
context
:
# This pulls in KurtosisBot's Github token, so that we can read from our private repos
# This pulls in KurtosisBot's Github token, so that we can read from our private repos
-
github-user
-
github-user
filters
:
filters
:
branches
:
branches
:
ignore
:
ignore
:
-
develop
-
master
-
master
\ No newline at end of file
docs/changelog.md
View file @
db0cbde9
...
@@ -8,6 +8,7 @@
...
@@ -8,6 +8,7 @@
-
Moved away from
`load`
infavor of
`import_module`
-
Moved away from
`load`
infavor of
`import_module`
-
Moved away from
`store_files_from_service`
to
`store_service_files`
-
Moved away from
`store_files_from_service`
to
`store_service_files`
-
Removed empty
`ports`
from a few service configs as passing it is now optional
-
Removed empty
`ports`
from a few service configs as passing it is now optional
-
Adjusted to the new render templates config
# 0.0.1
# 0.0.1
...
...
scripts/run.sh
deleted
100755 → 0
View file @
7311d884
#!/usr/bin/env bash
# 2021-07-08 WATERMARK, DO NOT REMOVE - This script was generated from the Kurtosis Bash script template
set
-euo
pipefail
# Bash "strict mode"
script_dirpath
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
&&
pwd
)
"
root_dirpath
=
"
$(
dirname
"
${
script_dirpath
}
"
)
"
# ==================================================================================================
# Main Logic
# ==================================================================================================
if
!
"kurtosis"
"exec"
"
${
root_dirpath
}
"
;
then
echo
"Error: running the startosis script"
fi
src/shared_utils/shared_utils.star
View file @
db0cbde9
...
@@ -3,7 +3,7 @@ UDP_PROTOCOL = "UDP"
...
@@ -3,7 +3,7 @@ UDP_PROTOCOL = "UDP"
def new_template_and_data(template, template_data_json):
def new_template_and_data(template, template_data_json):
return
{"template": template, "template_data_json": template_data_json}
return
struct(template = template, data = template_data_json)
def path_join(*args):
def path_join(*args):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment