Skip to content

Commit

Permalink
Merge pull request #269 from accel-sim/dev-github-ci
Browse files Browse the repository at this point in the history
Adding GitHub ci short tests
  • Loading branch information
Shreya-gaur authored Jan 23, 2024
2 parents 53da2df + 1a92a79 commit 86f4430
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/short-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the mydev branch
push:
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:
short-tests:
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@v2
- name: Run Simulation
run: /bin/bash $GITHUB_WORKSPACE/short-tests.sh
2 changes: 1 addition & 1 deletion travis.sh → short-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fi
#Make the simulator
export PATH=$CUDA_INSTALL_PATH/bin:$PATH;
source ./gpu-simulator/setup_environment.sh
make -C ./gpu-simulator
make -j -C ./gpu-simulator

#Get the pre-run trace files
rm -rf ./hw_run/rodinia_2.0-ft
Expand Down

0 comments on commit 86f4430

Please sign in to comment.