Skip to content

Commit

Permalink
feat: add machine emulator C API bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
mpernambuco authored and renan061 committed May 27, 2024
1 parent f02808e commit e31192e
Show file tree
Hide file tree
Showing 16 changed files with 1,549 additions and 157 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ jobs:
./docker-bake.hcl
${{ steps.docker_meta.outputs.bake-file }}
./docker-bake.platforms.hcl
targets: rollups-node-ci-base
targets: rollups-node-ci
push: true
project: ${{ vars.DEPOT_PROJECT }}
workdir: build
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added `Makefile` to help node developers setup their environment
- Added experimental sunodo validator mode
- Added instructions on how to run the node with Docker
- Added Cartesi Machine C API wrapper

### Changed

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ submodules: ## Download the git submodules
test: unit-test e2e-test ## Execute all tests

.PHONY: unit-test
unit-test:## Execute unit tests
unit-test: ## Execute unit tests
@echo "Running unit tests"
@go test ./...

.PHONY: e2e-test
e2e-test: ## Execute e2e tests
@echo "Running end-to-end tests"
@go test -count=1 ./test --tags=endtoendtests
@go test -count=1 ./test

.PHONY: lint
lint: ## Run the linter
Expand Down
Loading

0 comments on commit e31192e

Please sign in to comment.