-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into resolc.js
- Loading branch information
Showing
143 changed files
with
15,478 additions
and
6,177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Build revive-debian | ||
on: | ||
workflow_dispatch: | ||
|
||
env: | ||
REVIVE_DEBIAN_PACKAGE: revive-debian-x86 | ||
DEBIAN_CONTAINER: revive-builder-debian-x86 | ||
DEBIAN_CONTAINER_BUILDER: build-debian-builder.sh | ||
DEBIAN_CONTAINER_RUNNER: run-debian-builder.sh | ||
REVIVE_DEBIAN_INSTALL: ${{ github.workspace }}/target/release | ||
REVIVE_DEBIAN_BINARY: resolc | ||
RUST_VERSION: "1.80" | ||
|
||
jobs: | ||
build-revive-debian-x86: | ||
name: debian-container-x86 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: build-container | ||
run: | | ||
(cd utils && ./${{ env.DEBIAN_CONTAINER_BUILDER}} --build-arg RUST_VERSION=${{ env.RUST_VERSION}} . ) | ||
- name: build-revive-debian | ||
run: | | ||
rustup show | ||
cargo --version | ||
rustup +nightly show | ||
cargo +nightly --version | ||
bash --version | ||
utils/${{ env.DEBIAN_CONTAINER_RUNNER }} utils/build-revive.sh -o ${{ env.REVIVE_DEBIAN_INSTALL}} | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{ env.REVIVE_DEBIAN_PACKAGE }} | ||
path: ${{ env.REVIVE_DEBIAN_INSTALL }}/${{ env.REVIVE_DEBIAN_BINARY }} | ||
retention-days: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Changelog | ||
|
||
## Unreleased | ||
|
||
## v0.1.0-dev.5 | ||
|
||
This is development pre-release. | ||
|
||
# Added | ||
- Implement the `CODESIZE` and `EXTCODESIZE` opcodes. | ||
|
||
# Changed | ||
- Include the full revive version in the contract metadata. | ||
|
||
# Fixed | ||
|
||
## v0.1.0-dev-4 | ||
|
||
This is development pre-release. | ||
|
||
# Added | ||
- Support the `ORIGIN` opcode. | ||
|
||
# Changed | ||
- Update polkavm to `v0.14.0`. | ||
- Enable the `a`, `fast-unaligned-access` and `xtheadcondmov` LLVM target features, decreasing the code size for some contracts. | ||
|
||
# Fixed |
Oops, something went wrong.