Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ayanchak1508 committed Feb 21, 2024
2 parents 4912717 + c2f1c1b commit e76adbc
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/classroom/autograding.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"tests": [
{
"name": "Alu Test",
"setup": "",
"run": "cat output1.log",
"input": "",
"output": "Test passed",
"comparison": "included",
"timeout": 10,
"points": 1
},
{
"name": "Arbiter Test",
"setup": "",
"run": "cat output2.log",
"input": "",
"output": "Test passed",
"comparison": "included",
"timeout": 10,
"points": 1
},
{
"name": "Shifter",
"setup": "",
"run": "cat output3.log",
"input": "",
"output": "Left barrel shifter test passed",
"comparison": "included",
"timeout": 10,
"points": 1
},
{
"name": "Debugging 1",
"setup": "",
"run": "cat output4.log",
"input": "",
"output": "Test 1 passed",
"comparison": "included",
"timeout": 10,
"points": 1
},
{
"name": "Debugging 2 ",
"setup": "",
"run": "cat output4.log",
"input": "",
"output": "Test 2 passed",
"comparison": "included",
"timeout": 10,
"points": 1
},
{
"name": "Debugging 3",
"setup": "",
"run": "cat output4.log",
"input": "",
"output": "Test 3 passed",
"comparison": "included",
"timeout": 10,
"points": 1
}
]
}
19 changes: 19 additions & 0 deletions .github/workflows/classroom.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: GitHub Classroom Workflow

on:
- push
- workflow_dispatch

permissions:
checks: write
actions: read
contents: read

jobs:
build:
name: Autograding
runs-on: ubuntu-latest
if: github.actor != 'github-classroom[bot]'
steps:
- uses: actions/checkout@v4
- uses: education/autograding@v1
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Review Assignment Due Date](https://classroom.github.com/assets/deadline-readme-button-24ddc0f5d75046c5622901739e7c5dd533143b0c8e959d652212380cedb1ea36.svg)](https://classroom.github.com/a/ZA44tux2)
# lab1_a: Combinational Exercises and Debugging Sequential Machines

In the second week of class, we'll be releasing the main component of the lab (`lab1_b`). This pre-lab is meant to warm you up and give you some practice with Bluespec and reasoning about hardware. It is also meant to give you a chance to see points of confusion that we can clarify in office hours or recitation.
Expand Down

0 comments on commit e76adbc

Please sign in to comment.