Skip to content

Commit d8fa877

Browse files
authored
Merge branch 'master' into _update-deps/runtimeverification/wasm-semantics
2 parents 2f98a37 + 80640c4 commit d8fa877

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1649
-73
lines changed

.cruft.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
7-
"project_name": "ksoroban",
8-
"project_slug": "ksoroban",
9-
"package_name": "ksoroban",
7+
"project_name": "komet",
8+
"project_slug": "komet",
9+
"package_name": "komet",
1010
"version": "0.1.0",
1111
"description": "K tooling for the Soroban platform",
1212
"author_name": "Runtime Verification, Inc.",

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
name: 'Integration Tests'
5252
runs-on: [self-hosted, linux, normal]
5353
env:
54-
CONTAINER: ksoroban-integration-${{ github.sha }}
54+
CONTAINER: komet-integration-${{ github.sha }}
5555
steps:
5656
- name: 'Check out code'
5757
uses: actions/checkout@v3
@@ -61,7 +61,7 @@ jobs:
6161
uses: ./.github/actions/with-docker
6262
with:
6363
container-name: ${CONTAINER}
64-
- name: 'Build ksoroban'
64+
- name: 'Build komet'
6565
run: docker exec --user user ${CONTAINER} poetry install
6666
- name: 'Build semantics'
6767
run: docker exec --user user ${CONTAINER} make kdist-build

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ COV_ARGS :=
5151

5252
cov: cov-all
5353

54-
cov-%: TEST_ARGS += --cov=ksoroban --no-cov-on-fail --cov-branch --cov-report=term
54+
cov-%: TEST_ARGS += --cov=komet --no-cov-on-fail --cov-branch --cov-report=term
5555

5656
cov-all: TEST_ARGS += --cov-report=html:cov-all-html $(COV_ARGS)
5757
cov-all: test-all

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ksoroban
1+
# komet
22

33

44
## Installation

0 commit comments

Comments
 (0)