Skip to content

Commit

Permalink
Update toolchain to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vfusco committed Jun 27, 2022
1 parent f7927f5 commit 5daa800
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on: [push]
env:
KERNEL_VERSION: 5.5.19-ctsi-5
RISCV_PK_VERSION: 1.0.0-ctsi-1
TOOLCHAIN_VERSION: 0.10.0
jobs:
build:
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -58,7 +59,7 @@ jobs:
load: true
build-args: |
TOOLCHAIN_REPOSITORY=${{ secrets.DOCKER_ORGANIZATION }}/toolchain
TOOLCHAIN_VERSION=0.9.0
TOOLCHAIN_VERSION=${{ env.TOOLCHAIN_VERSION }}
KERNEL_VERSION=${{ env.KERNEL_VERSION }}
RISCV_PK_VERSION=${{ env.RISCV_PK_VERSION }}
Expand Down Expand Up @@ -90,7 +91,9 @@ jobs:
load: false
build-args: |
TOOLCHAIN_REPOSITORY=${{ secrets.DOCKER_ORGANIZATION }}/toolchain
TOOLCHAIN_VERSION=0.9.0
TOOLCHAIN_VERSION=${{ env.TOOLCHAIN_VERSION }}
KERNEL_VERSION=${{ env.KERNEL_VERSION }}
RISCV_PK_VERSION=${{ env.RISCV_PK_VERSION }}
build-fd-emulation:
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -149,7 +152,7 @@ jobs:
load: true
build-args: |
TOOLCHAIN_REPOSITORY=${{ secrets.DOCKER_ORGANIZATION }}/toolchain
TOOLCHAIN_VERSION=0.9.0
TOOLCHAIN_VERSION=${{ env.TOOLCHAIN_VERSION }}
KERNEL_VERSION=${{ env.KERNEL_VERSION }}
RISCV_PK_VERSION=${{ env.RISCV_PK_VERSION }}
Expand Down Expand Up @@ -192,4 +195,6 @@ jobs:
load: false
build-args: |
TOOLCHAIN_REPOSITORY=${{ secrets.DOCKER_ORGANIZATION }}/toolchain
TOOLCHAIN_VERSION=0.9.0
TOOLCHAIN_VERSION=${{ env.TOOLCHAIN_VERSION }}
KERNEL_VERSION=${{ env.KERNEL_VERSION }}
RISCV_PK_VERSION=${{ env.RISCV_PK_VERSION }}
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changes

## [0.12.0] - 2022-06-27
### Changed
- Updated toolchain version to v0.10.0
- Use sources from the same organization on CI
- Publish nobbl, selftests, headers
- Remove cartesi-logo.txt from bbl
Expand Down Expand Up @@ -40,7 +43,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [0.2.0]
- [0.1.0]

[Unreleased]: https://github.com/cartesi/image-kernel/compare/v0.11.0...HEAD
[Unreleased]: https://github.com/cartesi/image-kernel/compare/v0.12.0...HEAD
[0.12.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.12.0
[0.11.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.11.0
[0.10.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.10.0
[0.9.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.9.0
Expand All @@ -52,5 +56,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[0.3.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.3.0
[0.2.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.2.0
[0.1.0]: https://github.com/cartesi/image-kernel/releases/tag/v0.1.0


2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

TAG ?= devel
TOOLCHAIN_DOCKER_REPOSITORY ?= cartesi/toolchain
TOOLCHAIN_TAG ?= 0.9.0
TOOLCHAIN_TAG ?= 0.10.0
KERNEL_VERSION ?= 5.5.19-ctsi-5
KERNEL_SRCPATH := dep/linux-${KERNEL_VERSION}.tar.gz
RISCV_PK_VERSION ?= 1.0.0-ctsi-1
Expand Down

0 comments on commit 5daa800

Please sign in to comment.