Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add andersen region-aware CI job [AndersenRegionAware] #526

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
10 changes: 10 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,16 @@ jobs:
- name: "Run the llvm-test-suite-andersen-agnostic"
run: ./scripts/run-llvm-test-suite.sh --make-target llvm-run-andersen-agnostic

llvm-test-suite-andersen-region-aware:
if: contains(github.event.pull_request.title, '[AndersenRegionAware]')
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: "Build jlm"
uses: ./.github/actions/BuildJlm
- name: "Run the llvm-test-suite-andersen-region-aware"
run: ./scripts/run-llvm-test-suite.sh --make-target llvm-run-andersen-region-aware

llvm-test-suite-steensgaard-agnostic:
if: contains(github.event.pull_request.title, '[SteensgaardAgnostic]')
runs-on: ubuntu-22.04
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-llvm-test-suite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -eu

# URL to the benchmark git repository and the commit to be used
GIT_REPOSITORY=https://github.com/phate/llvm-test-suite.git
GIT_COMMIT=dadc9d4760fe36c734cc7bd9d460930b4f020513
GIT_COMMIT=ec4ff100968c86381ee20b1347ac7abebc7bd74e

# Get the absolute path to this script and set default JLM paths
SCRIPT_DIR="$(dirname "$(realpath "$0")")"
Expand Down
Loading