24
24
workflow_dispatch :
25
25
schedule :
26
26
# Run the job every 4 hours
27
- - cron : ' 0 */1 * * *'
27
+ - cron : ' 0 */24 * * *'
28
28
29
29
jobs :
30
30
prelim :
31
31
runs-on : ["self-hosted", "tpu", "v6e-8"]
32
32
steps :
33
33
- uses : actions/checkout@v4
34
- - name : Test MOE Microbenchmarks
35
- run : bash .github/workflows/test_moe_microbenchmarks .sh
34
+ - name : Test MOEBenchmarks
35
+ run : bash .github/workflows/test_moe_benchmarks .sh
36
36
# run: bash .github/workflows/test_moe_8x22b_microbenchmark.sh
37
37
# - name: Test MOE long context chunked prefill - 8k
38
38
# run: bash .github/workflows/benchmark_chunked_prefill.sh
@@ -50,19 +50,18 @@ jobs:
50
50
- name : Log message if dependent job succeeded
51
51
if : ${{ ! (failure() && github.event.pull_request == null) }}
52
52
run : echo "Conditions for creating/updating issue not met. Skipping."
53
- # - name: Send email
54
-
55
- # with:
56
- # server_address: smtp.gmail.com
57
- # server_port: 465
58
- # username: ${{secrets.MAIL_USERNAME}}
59
- # password: ${{secrets.MAIL_PASSWORD}}
60
- # subject: Message from Inference Stable Stack Runs.
61
-
62
- # from: InferenceStableStackRuns
63
- # secure: true
64
- # attachments: ~/test_dir/moe_8x7b_jetstream.txt
65
- # # attachments: ~/test_dir/moe_8x7b.txt,~/test_dir/moe_8x22b.txt,~/test_dir/moe_8x22b_long_context_8k_prefill.txt
66
- # body: workflow for ${{github.repository}} completed successfully!
53
+ - name : Send email
54
+
55
+ with :
56
+ server_address : smtp.gmail.com
57
+ server_port : 465
58
+ username : ${{secrets.MAIL_USERNAME}}
59
+ password : ${{secrets.MAIL_PASSWORD}}
60
+ subject : Message from Inference Stable Stack Runs.
61
+
62
+ from : JetStream Runs
63
+ secure : true
64
+ attachments : ~/test_dir/moe_8x7b.txt,~/test_dir/moe_8x22b.txt,~/test_dir/moe_8x22b_long_context_8k_prefill.txt,~/test_dir/moe_8x7b_jetstream.txt
65
+ body : workflow for ${{github.repository}} completed successfully!
67
66
- name : Cleanup
68
67
run : rm -rf ~/test_dir
0 commit comments