All checks were successful
build / build (push) Successful in 2m18s
- basic generation of json files - supported parsers: - healthcheck - result-detail - result-status - file - log - dummy - keyword (keyword, clangtidy, cppcheck, cpplint) - diff - `convert` functions is mature, tested in engr151-24fa last two homeworks and engr151-24fa p3 - teapot and healthcheck should be up to date Co-authored-by: Boming Zhang <bomingzh@sjtu.edu.cn> Reviewed-on: #10 Reviewed-by: Boming Zhang <bomingzh@sjtu.edu.cn> Co-authored-by: jon-lee <jon-lee@sjtu.edu.cn> Co-committed-by: jon-lee <jon-lee@sjtu.edu.cn>
22 lines
565 B
YAML
22 lines
565 B
YAML
name: Run JOJ3 on Release
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
run:
|
|
runs-on: focs-latest-slim
|
|
container:
|
|
volumes:
|
|
- /home/tt/.config:/home/tt/.config
|
|
- /home/tt/.cache:/home/tt/.cache
|
|
- /home/tt/.ssh:/home/tt/.ssh
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@focs
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Run joj3
|
|
run: |
|
|
sudo -E -u tt joj3 -conf-root "/home/tt/.config/joj/tests/homework" -conf-name "conf-release.json" -tag "${{ github.ref_name }}"
|