try ci
Some checks failed
judge / Build judge (push) Successful in 1m13s
judge / Linux / gcc / Debug (push) Successful in 11s
judge / Linux / clang / Release (push) Successful in 12s
judge / Linux / gcc / Release (push) Successful in 12s
judge / Linux / clang / Sanitized (push) Successful in 10s
judge / Linux / gcc / Sanitized (push) Successful in 11s
judge / Linux / gcc / Debug (valgrind) (push) Successful in 23s
judge / Windows / clang / Debug (push) Successful in 1m11s
judge / Windows / clang / Release (push) Successful in 1m8s
judge / Windows / msvc / Release (push) Successful in 1m14s
judge / Windows / msvc / Debug (push) Successful in 1m18s
judge / SUMMARY (push) Failing after 2s

This commit is contained in:
2026-04-05 18:29:54 +03:00
parent 32737ee6d6
commit 77f9bcf7f0

View File

@@ -1,148 +0,0 @@
name: judge
run-name: "Sum tests (${{ inputs.student_url || github.repository }})"
on:
push:
pull_request:
workflow_dispatch:
inputs:
student_url:
description: "Student repo (owner/repo), leave empty to use current repo"
required: false
type: string
default: ""
student_ref:
description: "Ref (branch / tag / SHA)"
required: false
type: string
default: "main"
env:
SUITE_FILE: sum.jdg
SOURCES_DIR: __sources__
jobs:
test:
name: "${{ matrix.toolchain.system }} / ${{ matrix.toolchain.use_compiler }} / ${{ matrix.toolchain.build_type }}${{ matrix.toolchain.wrapper != 'no' && format(' ({0})', matrix.toolchain.wrapper) || '' }}"
strategy:
fail-fast: false
matrix:
toolchain:
- { system: Linux, use_compiler: gcc, build_type: Release, cflags: "-O2", wrapper: no, timeout_factor: 1.0 }
- { system: Linux, use_compiler: gcc, build_type: Debug, cflags: "-O0 -g", wrapper: no, timeout_factor: 2.5 }
- { system: Linux, use_compiler: gcc, build_type: Sanitized, cflags: "-O1 -g -fsanitize=address,undefined", wrapper: no, timeout_factor: 2.5 }
- { system: Linux, use_compiler: gcc, build_type: Debug, cflags: "-O0 -g", wrapper: valgrind, timeout_factor: 5.0 }
- { system: Linux, use_compiler: clang, build_type: Release, cflags: "-O2", wrapper: no, timeout_factor: 1.0 }
- { system: Linux, use_compiler: clang, build_type: Sanitized, cflags: "-O1 -g -fsanitize=address,undefined", wrapper: no, timeout_factor: 2.5 }
- { system: Windows, use_compiler: clang, build_type: Release, cflags: "-O2", wrapper: no, timeout_factor: 2.0 }
- { system: Windows, use_compiler: clang, build_type: Debug, cflags: "-O0 -g", wrapper: no, timeout_factor: 3.0 }
- { system: Windows, use_compiler: msvc, build_type: Release, cflags: "/O2", wrapper: no, timeout_factor: 2.0 }
- { system: Windows, use_compiler: msvc, build_type: Debug, cflags: "/Od /Zi", wrapper: no, timeout_factor: 5.0 }
runs-on: ${{ matrix.toolchain.system }}-Runner
timeout-minutes: 10
env:
REPORT_NAME: "report_${{ matrix.toolchain.system }}_${{ matrix.toolchain.use_compiler }}_${{ matrix.toolchain.build_type }}_${{ matrix.toolchain.wrapper }}"
CC: ${{ matrix.toolchain.use_compiler }}
CFLAGS: ${{ matrix.toolchain.cflags }}
steps:
- name: Checkout judge harness
uses: actions/checkout@v4
- name: Checkout student sources
if: ${{ inputs.student_url != '' }}
uses: actions/checkout@v4
with:
repository: ${{ inputs.student_url }}
ref: ${{ inputs.student_ref }}
path: ${{ env.SOURCES_DIR }}
token: ${{ secrets.VAR_TOKEN }}
- name: Stage sources (self)
if: ${{ inputs.student_url == '' }}
shell: bash
run: |
mkdir -p "${SOURCES_DIR}"
cp solution.c "${SOURCES_DIR}/"
- name: Set up MSVC environment
if: matrix.toolchain.use_compiler == 'msvc'
uses: ilammy/msvc-dev-cmd@v1
- name: Install judge
shell: bash
run: |
go install github.com/Mond1c/judge/cmd/cli@latest
echo "$HOME/go/bin" >> "$GITHUB_PATH"
- name: Install valgrind
if: matrix.toolchain.wrapper == 'valgrind'
run: sudo apt-get update && sudo apt-get install -y valgrind
- name: Run judge
shell: bash
working-directory: ${{ env.SOURCES_DIR }}
env:
WRAPPER: ${{ matrix.toolchain.wrapper }}
run: |
cp ../${{ env.SUITE_FILE }} .
WRAPPER_ARG=""
case "$WRAPPER" in
valgrind) WRAPPER_ARG='--wrapper=valgrind --error-exitcode=99 --leak-check=full -q' ;;
no) WRAPPER_ARG="" ;;
*) WRAPPER_ARG="--wrapper=$WRAPPER" ;;
esac
# For MSVC the suffixed .exe is produced; runner auto-detects it.
judge ${{ env.SUITE_FILE }} . --json $WRAPPER_ARG > "$GITHUB_WORKSPACE/${REPORT_NAME}.json" \
|| echo "judge exited non-zero (expected when tests fail)"
judge ${{ env.SUITE_FILE }} . $WRAPPER_ARG || true
- name: Upload report
if: ${{ always() }}
uses: https://github.com/christopherHX/gitea-upload-artifact@v4
with:
name: ${{ env.REPORT_NAME }}
path: ${{ env.REPORT_NAME }}.json
retention-days: 7
compression-level: 9
summary:
needs: [test]
if: ${{ always() }}
name: SUMMARY
runs-on: Linux-Runner
timeout-minutes: 5
steps:
- name: Download all reports
uses: https://github.com/christopherHX/gitea-download-artifact@v4
with:
path: reports
pattern: report_*
- name: Aggregate
shell: bash
run: |
echo "# Judge results" > SUMMARY.md
echo "" >> SUMMARY.md
echo "| Configuration | Score |" >> SUMMARY.md
echo "|---|---|" >> SUMMARY.md
for f in reports/*/*.json; do
cfg=$(basename "$(dirname "$f")" | sed 's/^report_//')
score=$(grep -o '"TotalScore":[^,}]*' "$f" | head -1 | cut -d: -f2)
echo "| $cfg | $score |" >> SUMMARY.md
done
cat SUMMARY.md
- name: Upload summary
uses: https://github.com/christopherHX/gitea-upload-artifact@v4
with:
name: SUMMARY
path: SUMMARY.md
retention-days: 7