Skip to content

Commit 08d9823

Browse files
committed
fix the CI yml for oscamp
1 parent c57dced commit 08d9823

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88

99
jobs:
1010
build-doc:
11-
if: github.repository == 'LearningOS/rCore-Camp-Code-2024A'
11+
if: github.repository == 'LearningOS/rCore-Camp-Code-2025S'
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
@@ -49,7 +49,7 @@ jobs:
4949
cat output.txt | grep -a "Test passed" | grep -oP "\d{1,}/\d{1,}" | xargs -i echo "points={}"
5050
cat output.txt | grep -a "Test passed" | grep -oP "\d{1,}/\d{1,}" | xargs -i echo "points={}" >> $GITHUB_OUTPUT
5151
deploy:
52-
if: github.repository != 'LearningOS/rCore-Camp-Code-2024A'
52+
if: github.repository != 'LearningOS/rCore-Camp-Code-2025S'
5353
name: Deploy to pages
5454
needs: basic-test
5555
runs-on: ubuntu-latest
@@ -75,8 +75,8 @@ jobs:
7575
- name: check score
7676
env:
7777
course_id: ${{ secrets.RCORE_2025_SPRING_COURSE_ID }}
78-
post_api: ${{ secrets.RUSTLINGS_2025_SPRING_POST_API }}
79-
token: ${{ secrets.RUSTLINGS_2025_SPRING_TOKEN }}
78+
post_api: ${{ secrets.RCORE_2025_SPRING_POST_API }}
79+
token: ${{ secrets.RCORE_2025_SPRING_TOKEN }}
8080
run: |
8181
score=$(( $(grep -o 'ch' classroom/latest.json | wc -l) * 100))
8282
cat classroom/latest.json

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# rCore-Camp-Code-2024A
1+
# rCore-Camp-Code-2025S
22

33
### Code
4-
- [Soure Code of labs for 2024A](https://github.com/LearningOS/rCore-Camp-Code-2024A)
4+
- [Soure Code of labs for 2025S](https://github.com/LearningOS/rCore-Camp-Code-2025S)
55
### Documents
66

7-
- Concise Manual: [rCore-Camp-Guide-2024A](https://LearningOS.github.io/rCore-Camp-Guide-2024A/)
7+
- Concise Manual: [rCore-Camp-Guide-2025S](https://LearningOS.github.io/rCore-Camp-Guide-2025S/)
88

99
- Detail Book [rCore-Tutorial-Book-v3](https://rcore-os.github.io/rCore-Tutorial-Book-v3/)
1010

1111

1212
### OS API docs
13-
- [ch1](https://learningos.github.io/rCore-Camp-Code-2024A/ch1/os/index.html) [ch2](https://learningos.github.io/rCore-Camp-Code-2024A/ch2/os/index.html) [ch3](https://learningos.github.io/rCore-Camp-Code-2024A/ch3/os/index.html) [ch4](https://learningos.github.io/rCore-Camp-Code-2024A/ch4/os/index.html)
14-
- [ch5](https://learningos.github.io/rCore-Camp-Code-2024A/ch5/os/index.html) [ch6](https://learningos.github.io/rCore-Camp-Code-2024A/ch6/os/index.html) [ch7](https://learningos.github.io/rCore-Camp-Code-2024A/ch7/os/index.html) [ch8](https://learningos.github.io/rCore-Camp-Code-2024A/ch8/os/index.html)
13+
- [ch1](https://learningos.github.io/rCore-Camp-Code-2025S/ch1/os/index.html) [ch2](https://learningos.github.io/rCore-Camp-Code-2025S/ch2/os/index.html) [ch3](https://learningos.github.io/rCore-Camp-Code-2025S/ch3/os/index.html) [ch4](https://learningos.github.io/rCore-Camp-Code-2025S/ch4/os/index.html)
14+
- [ch5](https://learningos.github.io/rCore-Camp-Code-2025S/ch5/os/index.html) [ch6](https://learningos.github.io/rCore-Camp-Code-2025S/ch6/os/index.html) [ch7](https://learningos.github.io/rCore-Camp-Code-2025S/ch7/os/index.html) [ch8](https://learningos.github.io/rCore-Camp-Code-2025S/ch8/os/index.html)
1515

1616

1717
### Related Resources
@@ -26,9 +26,9 @@ Notice: `<Number>` is chosen from `[1,2,3,4,5,6,7,8]`
2626

2727
```bash
2828
#
29-
$ git clone [email protected]:LearningOS/2024a-rcore-<YourName>
30-
$ cd 2024a-rcore-<YourName>
31-
$ git clone [email protected]:LearningOS/rCore-Tutorial-Test-2024A user
29+
$ git clone [email protected]:LearningOS/2025s-rcore-<YourName>
30+
$ cd 2025s-rcore-<YourName>
31+
$ git clone [email protected]:LearningOS/rCore-Tutorial-Test-2025S user
3232
$ git checkout ch<Number>
3333
$ cd os
3434
$ make run
@@ -42,11 +42,11 @@ Notice: `<Number>` is chosen from `[3,4,5,6,8]`
4242

4343
```bash
4444
# Replace <YourName> with your github ID
45-
$ git clone [email protected]:LearningOS/2024a-rcore-<YourName>
46-
$ cd 2024a-rcore-<YourName>
45+
$ git clone [email protected]:LearningOS/2025s-rcore-<YourName>
46+
$ cd 2025s-rcore-<YourName>
4747
$ rm -rf ci-user
48-
$ git clone [email protected]:LearningOS/rCore-Tutorial-Checker-2024A ci-user
49-
$ git clone [email protected]:LearningOS/rCore-Tutorial-Test-2024A ci-user/user
48+
$ git clone [email protected]:LearningOS/rCore-Tutorial-Checker-2025S ci-user
49+
$ git clone [email protected]:LearningOS/rCore-Tutorial-Test-2025S ci-user/user
5050
$ git checkout ch<Number>
5151
$ cd ci-user
5252
$ make test CHAPTER=<Number>

0 commit comments

Comments
 (0)