Skip to content

Commit

Permalink
Fix perf regression (#163)
Browse files Browse the repository at this point in the history
* Fix JikesRVM rsync. Clean previous openjdk build.
  • Loading branch information
qinsoon authored Nov 4, 2020
1 parent 8cd0a77 commit 6a590bf
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/perf-regression-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
submodules: true
# setup
- name: Overwrite MMTk core in JikesRVM binding
run: rsync -avLe mmtk-core/* mmtk-jikesrvm/repos/mmtk-core/
run: cp -r mmtk-core mmtk-jikesrvm/repos/
- name: Setup
run: |
./ci-perf-kit/scripts/history-run-setup.sh
Expand Down Expand Up @@ -90,6 +90,11 @@ jobs:
# setup
- name: Overwrite MMTk core in openjdk binding
run: cp -r mmtk-core mmtk-openjdk/repos/
# cleanup previosu build
- name: Cleanup previous build
run: |
rm -rf mmtk-openjdk/repos/openjdk/scratch
rm -rf mmtk-openjdk/repos/openjdk/build
- name: Setup
run: |
./ci-perf-kit/scripts/history-run-setup.sh
Expand Down Expand Up @@ -145,6 +150,11 @@ jobs:
# setup
- name: Overwrite MMTk core in openjdk binding
run: cp -r mmtk-core mmtk-openjdk/repos/
# cleanup previosu build
- name: Cleanup previous build
run: |
rm -rf mmtk-openjdk/repos/openjdk/scratch
rm -rf mmtk-openjdk/repos/openjdk/build
- id: branch
# we cannot use env vars in action input (the deploy step). So put the env var to this step's outputs.
run: echo "::set-output name=branch_name::$(echo ${GITHUB_REF#refs/heads/} | sed 's/\//_/g')"
Expand Down

0 comments on commit 6a590bf

Please sign in to comment.