This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #134 from Zondax/upgrade_v0.9.17
Upgrade v0.9.17
- Loading branch information
Showing
151 changed files
with
25,508 additions
and
22,543 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,58 @@ | ||
name: "Verify PRs to master" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
configure: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
uid_gid: ${{ steps.get-user.outputs.uid_gid }} | ||
steps: | ||
- id: get-user | ||
run: echo "::set-output name=uid_gid::$(id -u):$(id -g)" | ||
|
||
get_version: | ||
needs: configure | ||
runs-on: ubuntu-latest | ||
container: | ||
image: zondax/builder-bolos:latest | ||
options: --user ${{ needs.configure.outputs.uid_gid }} | ||
env: | ||
BOLOS_ENV: /opt/bolos | ||
HOME: /home/zondax_circle | ||
outputs: | ||
version: ${{ steps.store-version.outputs.version }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
||
- name: Invoke `version` | ||
shell: bash -l {0} | ||
env: | ||
BOLOS_SDK: ${{ github.workspace }}/deps/nanos-secure-sdk | ||
run: make version | ||
|
||
- id: store-version | ||
run: echo ::set-output name=version::$(cat ./app/app.version) | ||
|
||
check_app_version: | ||
needs: get_version | ||
runs-on: ubuntu-latest | ||
steps: | ||
- id: checkTag | ||
uses: mukunku/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag: ${{ needs.get_version.outputs.version }} | ||
|
||
- run: echo ${{ steps.checkTag.outputs.exists }} | ||
|
||
- name: Tag exists | ||
if: ${{ steps.checkTag.outputs.exists == 'true' }} | ||
run: exit 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# This is the `transaction_version` field of `Runtime` | ||
APPVERSION_M=9 | ||
APPVERSION_M=10 | ||
# This is the `spec_version` field of `Runtime` | ||
APPVERSION_N=9160 | ||
APPVERSION_N=9170 | ||
# This is the patch version of this release | ||
APPVERSION_P=1 | ||
APPVERSION_P=0 |
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
Oops, something went wrong.