File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 59
59
60
60
echo "run_smoke_tests=false" >> $GITHUB_OUTPUT
61
61
62
+ gpt-4o-2024-08-06 :
63
+ needs : check-label
64
+ if : ${{ needs.check-label.outputs.run_smoke_tests == 'true' }}
65
+ runs-on : ubuntu-22.04
66
+ steps :
67
+ - name : Checkout base repository
68
+ uses : actions/checkout@v4
69
+ with :
70
+ fetch-depth : 1
71
+ - name : Checkout PR code if running for a PR
72
+ if : ${{ github.event_name == 'pull_request_target' }}
73
+ uses : actions/checkout@v4
74
+ with :
75
+ fetch-depth : 1
76
+ repository : ${{ github.event.pull_request.head.repo.full_name }}
77
+ ref : ${{ github.event.pull_request.head.ref }}
78
+ - uses : actions/setup-go@v5
79
+ with :
80
+ cache : false
81
+ go-version : " 1.21"
82
+ - env :
83
+ OPENAI_API_KEY : ${{ secrets.SMOKE_OPENAI_API_KEY }}
84
+ GPTSCRIPT_DEFAULT_MODEL : gpt-4o-2024-08-06
85
+ name : Run smoke test for gpt-4o-2024-08-06
86
+ run : |
87
+ echo "Running smoke test for model gpt-4o-2024-08-06"
88
+ export PATH="$(pwd)/bin:${PATH}"
89
+ make smoke
90
+
62
91
gpt-4o-2024-05-13 :
63
92
needs : check-label
64
93
if : ${{ needs.check-label.outputs.run_smoke_tests == 'true' }}
You can’t perform that action at this time.
0 commit comments