use pipe instead of cin and c++ version detection fix #174
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: Short Tests | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the mydev branch | |
push: | |
branches-ignore: | |
- "gh-readonly-queue**" | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
SASS-Simulation: | |
runs-on: ubuntu-latest | |
container: | |
image: tgrogers/accel-sim_regress:Ubuntu-22.04-cuda-11.7 | |
# env: | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Run Simulation | |
run: /bin/bash $GITHUB_WORKSPACE/short-tests.sh | |
PTX-Simulation: | |
runs-on: ubuntu-latest | |
# env: | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Run Simulation | |
run: echo "skipped PTX-Simulation. Will perform in merge queue" | |
Tracer-Tool: | |
runs-on: ubuntu-latest | |
# env: | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Run Simulation | |
run: echo "skipped Tracer-Simulation. Will perform in merge queue" | |
format-code: | |
if: github.event_name == 'pull_request' | |
runs-on: tgrogers-raid | |
needs: [SASS-Simulation, PTX-Simulation, Tracer-Tool] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{github.event.pull_request.head.ref}} | |
repository: ${{github.event.pull_request.head.repo.full_name}} | |
ssh-key: '' | |
- name: Run clang-format | |
run: | | |
git config user.name "purdue-jenkins" | |
git config user.email "[email protected]" | |
git remote set-url origin [email protected]:${{github.event.pull_request.head.repo.full_name}} | |
git remote -v | |
/bin/bash ./gpu-simulator/format-code.sh | |
/bin/bash ./util/tracer_nvbit/tracer_tool/format-code.sh | |
if git status --untracked-files=no | grep -q "nothing to commit"; then echo "No changes to commit."; else git commit -a -m "Automated Format"; git push; fi |