Skip to content

Commit

Permalink
Bump version to v0.29 (#183)
Browse files Browse the repository at this point in the history
Co-authored-by: mmtkgc-bot <[email protected]>
  • Loading branch information
qinsoon and mmtkgc-bot authored Nov 8, 2024
1 parent d64f65b commit 058ce43
Show file tree
Hide file tree
Showing 5 changed files with 396 additions and 90 deletions.
10 changes: 10 additions & 0 deletions .github/scripts/ci-build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
set -xe

. $(dirname "$0")/common.sh

# To JikesRVM folder
cd $JIKESRVM_PATH

plan=$1

./bin/buildit localhost $plan -j $JAVA_HOME --answer-yes --use-third-party-heap=$BINDING_PATH --use-third-party-build-configs=$BINDING_PATH/jikesrvm/build/configs --use-external-source=$BINDING_PATH/jikesrvm/rvm/src --m32
31 changes: 25 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,47 @@ jobs:
run: |
./.github/scripts/ci-checkout.sh
./.github/scripts/ci-setup.sh
# Run the tests
- name: Dacapo Tests
run: ./.github/scripts/ci-test-normal.sh

# Run these checks after build

style-check:
runs-on: ubuntu-22.04
steps:
# Checkout repos and submodules
- uses: actions/checkout@v2
- name: Setup Environments
run: |
./.github/scripts/ci-checkout.sh
./.github/scripts/ci-setup.sh
# Style check
- name: Style checks
run: ./.github/scripts/ci-style.sh

msrv:
runs-on: ubuntu-22.04
steps:
# Checkout repos and submodules
- uses: actions/checkout@v2
- name: Setup Environments
run: |
./.github/scripts/ci-checkout.sh
./.github/scripts/ci-setup.sh
# Do a build first to generated the file needed for the Rust crate.
- name: Build
run: |
./.github/scripts/ci-build.sh RBaseBaseNoGC
# Verify the MSRV defined in Cargo.toml
- name: Install MSRV
run: cargo install cargo-msrv --locked
run: cargo +stable install cargo-msrv --locked
# Run cargo-msrv (force using i686 toolchain)
- name: Verify MSRV
id: verify-msrv
run: cargo msrv --path mmtk --target i686-unknown-linux-gnu verify -- cargo check --features semispace --target i686-unknown-linux-gnu
run: cargo msrv verify --path mmtk --target i686-unknown-linux-gnu -- cargo check --features semispace --target i686-unknown-linux-gnu
# If the previous step fails, find MSRV
- name: Find MSRV
if: ${{ steps.verify-msrv.outcome == 'failure' }}
run: cargo msrv --path mmtk --target i686-unknown-linux-gnu -- cargo check --features semispace --target i686-unknown-linux-gnu
run: cargo msrv find --path mmtk --target i686-unknown-linux-gnu -- cargo check --features semispace --target i686-unknown-linux-gnu

test-weak-ref:
runs-on: ubuntu-22.04
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
0.29.0 (2024-11-08)
===

## What's Changed
* Update mmtk-core to v0.29.0

**Full Changelog**: https://github.com/mmtk/mmtk-jikesrvm/compare/v0.28.0...v0.29.0

0.28.0 (2024-09-27)
===

Expand Down
Loading

0 comments on commit 058ce43

Please sign in to comment.