Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
pull_request_rules:
- name: backport patches to v1.8.2-RAI
- name: backport patches to v1.8.2+RAI
conditions:
- base=master
- label=backport-v1.8.2-RAI
- label=backport-v1.8.2+RAI
actions:
backport:
branches:
- v1.8.2-RAI
- v1.8.2+RAI
assignees:
- "{{ author }}"
label_conflicts: backport-conflicts
- name: backport patches to v1.9.2+RAI
conditions:
- base=master
- label=backport-v1.9.2+RAI
actions:
backport:
branches:
- v1.9.2+RAI
assignees:
- "{{ author }}"
label_conflicts: backport-conflicts
5 changes: 3 additions & 2 deletions .github/scripts/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ export MMTK_JULIA_DIR=$BINDING_PATH
# Make sure we have enough heap to build Julia
export MMTK_MIN_HSIZE_G=0.5
export MMTK_MAX_HSIZE_G=4
# Make sure we do not get OOM killed. The Github runner has ~7G RAM.
export JULIA_TEST_MAXRSS_MB=6500
# Make sure we do not get OOM killed.
total_mem=$(free -m | awk '/^Mem:/ {print $2}')
export JULIA_TEST_MAXRSS_MB=$total_mem

ci_run_jl_test() {
test=$1
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ on:
pull_request:
branches:
- master
- v1.8.2-RAI
- v1.8.2+RAI
- v1.9.2+RAI

concurrency:
# Cancels pending runs when a PR gets updated.
Expand Down