-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd68afa
commit 7805994
Showing
5 changed files
with
145 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: 'Qualification of filesys phase' | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- filesys | ||
|
||
jobs: | ||
filesys: | ||
name: 'Phase: File System' | ||
runs-on: 'ubuntu-latest' | ||
env: | ||
phase: 'filesys' | ||
steps: | ||
- name: 'Cloning repository' | ||
uses: 'actions/checkout@v2' | ||
- name: Install dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install qemu | ||
sudo ln -s /usr/bin/qemu-system-i386 /usr/bin/qemu | ||
- name: Pintos Checker | ||
id: phase | ||
uses: gbenm/pintos-checker@v1 | ||
with: | ||
phase: '${{ env.phase }}' | ||
root: "." | ||
utils_path: "utils" | ||
make: "make clean && make && make grade" | ||
- name: 'Show results' | ||
uses: './.github/pintos-results' | ||
with: | ||
results: "${{ steps.phase.outputs.results }}" | ||
phase: "${{ env.phase }}" |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: 'Qualification of threads phase' | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- threads | ||
|
||
jobs: | ||
threads: | ||
name: 'Phase: Threads' | ||
runs-on: 'ubuntu-latest' | ||
env: | ||
phase: 'threads' | ||
steps: | ||
- name: 'Cloning repository' | ||
uses: 'actions/checkout@v2' | ||
- name: Install dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install qemu | ||
sudo ln -s /usr/bin/qemu-system-i386 /usr/bin/qemu | ||
- name: Pintos Checker | ||
id: phase | ||
uses: gbenm/pintos-checker@v1 | ||
with: | ||
phase: "${{ env.phase }}" | ||
root: "." | ||
utils_path: "utils" | ||
make: "make clean && make && make grade" | ||
- name: 'Show results' | ||
uses: './.github/pintos-results' | ||
with: | ||
results: "${{ steps.phase.outputs.results }}" | ||
phase: "${{ env.phase }}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: 'Qualification of userprog phase' | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- userprog | ||
|
||
jobs: | ||
userprog: | ||
name: 'Phase: User Programs' | ||
runs-on: 'ubuntu-latest' | ||
env: | ||
phase: 'userprog' | ||
steps: | ||
- name: 'Cloning repository' | ||
uses: 'actions/checkout@v2' | ||
- name: Install dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install qemu | ||
sudo ln -s /usr/bin/qemu-system-i386 /usr/bin/qemu | ||
- name: Pintos Checker | ||
id: phase | ||
uses: gbenm/pintos-checker@v1 | ||
with: | ||
phase: '${{ env.phase }}' | ||
root: "." | ||
utils_path: "utils" | ||
make: "make clean && make && make grade" | ||
- name: 'Show results' | ||
uses: './.github/pintos-results' | ||
with: | ||
results: "${{ steps.phase.outputs.results }}" | ||
phase: "${{ env.phase }}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: 'Qualification of vm phase' | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- vm | ||
|
||
jobs: | ||
vm: | ||
name: 'Phase: Virtual Memory' | ||
runs-on: 'ubuntu-latest' | ||
env: | ||
phase: 'vm' | ||
steps: | ||
- name: 'Cloning repository' | ||
uses: 'actions/checkout@v2' | ||
- name: Install dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install qemu | ||
sudo ln -s /usr/bin/qemu-system-i386 /usr/bin/qemu | ||
- name: Pintos Checker | ||
id: phase | ||
uses: gbenm/pintos-checker@v1 | ||
with: | ||
phase: '${{ env.phase }}' | ||
root: "." | ||
utils_path: "utils" | ||
make: "make clean && make && make grade" | ||
- name: 'Show results' | ||
uses: './.github/pintos-results' | ||
with: | ||
results: "${{ steps.phase.outputs.results }}" | ||
phase: "${{ env.phase }}" |