Adjust information for corona situation
This commit is contained in:
parent
4c1f93bf47
commit
415baac968
17
README.md
17
README.md
@ -7,8 +7,8 @@
|
|||||||
| 2020-03-17 | |
|
| 2020-03-17 | |
|
||||||
| 2020-03-24 | |
|
| 2020-03-24 | |
|
||||||
| 2020-03-31 | Parser complete |
|
| 2020-03-31 | Parser complete |
|
||||||
| 2020-04-07 | *no proseminar* |
|
| 2020-04-07 | |
|
||||||
| 2020-04-14 | *no proseminar* |
|
| 2020-04-14 | |
|
||||||
| 2020-04-21 | Semantic checks complete |
|
| 2020-04-21 | Semantic checks complete |
|
||||||
| 2020-04-28 | |
|
| 2020-04-28 | |
|
||||||
| 2020-05-05 | AST → TAC conversion complete |
|
| 2020-05-05 | AST → TAC conversion complete |
|
||||||
@ -70,17 +70,20 @@ Both of these parts as well as the majority of QA session grades must be positiv
|
|||||||
Be sure to adhere to the specification, deviating from it (without giving proper reason) will negatively impact your grade.
|
Be sure to adhere to the specification, deviating from it (without giving proper reason) will negatively impact your grade.
|
||||||
See [Final Submission Evaluation Scheme](evaluation_scheme.md) for more details.
|
See [Final Submission Evaluation Scheme](evaluation_scheme.md) for more details.
|
||||||
|
|
||||||
### Absence
|
### Remote Seminar
|
||||||
|
|
||||||
You must not be absent more than three times to pass this course.
|
While university grounds are locked down, no attendance is required and no QA sessions are held.
|
||||||
You do not have to inform me of your absence.
|
I'll stream during the regular seminar times [over at Twitch](https://www.twitch.tv/AlexWarhawk), feel free to tune in and ask questions.
|
||||||
|
Streams should be recorded by Twitch automatically and remain online for 14 days.
|
||||||
|
|
||||||
|
I recommend sending me snapshots of your code-base, I'll provide feedback while streaming.
|
||||||
|
See [Submission Guideline](submission.md).
|
||||||
|
|
||||||
## Contacting Me
|
## Contacting Me
|
||||||
|
|
||||||
If you have questions or want to know more about a certain topic, I am always glad to help.
|
If you have questions or want to know more about a certain topic, I am always glad to help.
|
||||||
You can find me in room 2W05 of the ICT building.
|
|
||||||
|
|
||||||
You can also contact me by email, just be sure to send it from your university account.
|
You can contact me by email, just be sure to send it from your university account.
|
||||||
Please keep your email informal and include the course number in the subject.
|
Please keep your email informal and include the course number in the subject.
|
||||||
Preferably use the following link.
|
Preferably use the following link.
|
||||||
|
|
||||||
|
@ -2,19 +2,30 @@
|
|||||||
|
|
||||||
- Replace `XX` with your team number with leading zero (e.g. `02`).
|
- Replace `XX` with your team number with leading zero (e.g. `02`).
|
||||||
- One submission *per team*.
|
- One submission *per team*.
|
||||||
|
- Familiarise yourself with the `git archive` command.
|
||||||
|
|
||||||
|
## Feedback Request
|
||||||
|
|
||||||
|
1. Run the following command, assuming you want to submit the currently checked out version:
|
||||||
|
|
||||||
|
$ git archive --prefix=feedback_request/ --format=zip HEAD > feedback_request.zip
|
||||||
|
|
||||||
|
2. Verify that the resulting archive contains everything you want to submit and nothing more.
|
||||||
|
3. Ensure that the resulting archive does not contain any personal information like names or student IDs.
|
||||||
|
4. Submit the archive via mail using the following line as subject (or link below).
|
||||||
|
|
||||||
|
703602 - Feedback Request
|
||||||
|
|
||||||
|
📧 [send email](mailto:alexander.hirsch@uibk.ac.at?subject=703602%20-%20Feedback%20Request)
|
||||||
|
|
||||||
## Build Test Submission
|
## Build Test Submission
|
||||||
|
|
||||||
1. `cd` into your repository.
|
1. Run the following command, assuming you want to submit the currently checked out version:
|
||||||
2. Commit all pending changes.
|
|
||||||
3. Checkout the revision you want to submit.
|
|
||||||
4. Ensure the submitted code builds.
|
|
||||||
5. Run the following command:
|
|
||||||
|
|
||||||
$ git archive --prefix=team_XX_build_test/ --format=zip HEAD > team_XX_build_test.zip
|
$ git archive --prefix=team_XX_build_test/ --format=zip HEAD > team_XX_build_test.zip
|
||||||
|
|
||||||
6. Verify that the resulting archive contains everything you want to submit and nothing more.
|
2. Verify that the resulting archive contains everything you want to submit and nothing more.
|
||||||
7. Submit the archive via mail using the following line as subject (or link below).
|
3. Submit the archive via mail using the following line as subject (or link below).
|
||||||
|
|
||||||
703602 - Team XX Build Test Submission
|
703602 - Team XX Build Test Submission
|
||||||
|
|
||||||
@ -22,22 +33,19 @@
|
|||||||
|
|
||||||
## Final Submission
|
## Final Submission
|
||||||
|
|
||||||
1. `cd` into your repository.
|
1. Run the following command, assuming you want to submit the currently checked out version:
|
||||||
2. Commit all pending changes.
|
|
||||||
3. Checkout the revision you want to submit.
|
$ git archive --prefix=team_XX_final/ --format=zip HEAD > team_XX_final.zip
|
||||||
4. Ensure everything works.
|
|
||||||
|
2. Verify that the resulting archive contains everything you want to submit and nothing more.
|
||||||
|
3. Ensure everything works.
|
||||||
- Everything builds
|
- Everything builds
|
||||||
- No (unjustified) warnings
|
- No (unjustified) warnings
|
||||||
- All unit tests succeed
|
- All unit tests succeed
|
||||||
- All integration tests succeed
|
- All integration tests succeed
|
||||||
- No memory is leaked
|
- No memory is leaked
|
||||||
- Known issues is present and up-to-date
|
- Known issues is present and up-to-date
|
||||||
5. Run the following command:
|
4. Submit the archive via mail using the following line as subject (or link below).
|
||||||
|
|
||||||
$ git archive --prefix=team_XX_final/ --format=zip HEAD > team_XX_final.zip
|
|
||||||
|
|
||||||
6. Verify that the resulting archive contains everything you want to submit and nothing more.
|
|
||||||
7. Submit the archive via mail using the following line as subject (or link below).
|
|
||||||
|
|
||||||
703602 - Team XX Final Submission
|
703602 - Team XX Final Submission
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user