Skip to content

Commit 1d7f99a

Browse files
committed
action: test report action
1 parent 9b3cfc6 commit 1d7f99a

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/report.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
name: Weekly Report
22

33
on:
4-
schedule:
5-
- cron: '0 0 * * *'
4+
push
5+
# schedule:
6+
# - cron: '0 0 * * *'
67

78
jobs:
89
build:
910

10-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1112
steps:
1213
- uses: actions/checkout@v4
1314

@@ -27,16 +28,17 @@ jobs:
2728
build-essential \
2829
gcc-multilib \
2930
g++-multilib \
30-
dejagnu
31-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0;
31+
dejagnu \
32+
rustc
33+
# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.72.0;
3234
3335
- name: Generate report
3436
run: |
35-
cd utils/generator; \
37+
cd util/generator; \
3638
./weekly.sh > "weekly_report";
3739
3840
- name: Archive report
3941
uses: actions/upload-artifact@v4
4042
with:
4143
name: weekly_report
42-
path: utils/generator/weekly_report
44+
path: util/generator/weekly_report

0 commit comments

Comments
 (0)