* ci : remove tag from build-self-hosted.yml * ci : slim -> self-hosted * ci : prevent heavy CPU jobs from running on fast runners * ci : prevent cmake pkg to run on dedicated fast runners * ci : try to bump 3.11 -> 3.13 * ci : move lint back to 3.11 * ci : back to 3.11 * ci : add comment about UI jobs * ci : move python requirements check to CPU runners this job is a bit slow for a dedicated "fast" runner * ci : add self-hosted ui workflow * ci : fix UI naming * tmp to check if arm64 fast is compatible with all jobs * revert last commit
46 lines
1.6 KiB
YAML
46 lines
1.6 KiB
YAML
name: Check Pre-Tokenizer Hashes
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'convert_hf_to_gguf.py'
|
|
- 'convert_hf_to_gguf_update.py'
|
|
pull_request:
|
|
paths:
|
|
- 'convert_hf_to_gguf.py'
|
|
- 'convert_hf_to_gguf_update.py'
|
|
|
|
jobs:
|
|
pre-tokenizer-hashes:
|
|
runs-on: [self-hosted, fast]
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Install Python dependencies
|
|
run: |
|
|
python3 -m venv .venv
|
|
.venv/bin/pip install -r requirements/requirements-convert_hf_to_gguf_update.txt
|
|
|
|
- name: Update pre-tokenizer hashes
|
|
run: |
|
|
cp convert_hf_to_gguf.py /tmp
|
|
.venv/bin/python convert_hf_to_gguf_update.py --check-missing
|
|
|
|
- name: Check if committed pre-tokenizer hashes matches generated version
|
|
run: |
|
|
if ! diff -q convert_hf_to_gguf.py /tmp/convert_hf_to_gguf.py; then
|
|
echo "Model pre-tokenizer hashes (in convert_hf_to_gguf.py) do not match generated hashes (from convert_hf_to_gguf_update.py)."
|
|
echo "To fix: run ./convert_hf_to_gguf_update.py and commit the updated convert_hf_to_gguf.py along with your changes"
|
|
echo "Differences found:"
|
|
diff convert_hf_to_gguf.py /tmp/convert_hf_to_gguf.py || true
|
|
exit 1
|
|
fi
|
|
echo "Model pre-tokenizer hashes are up to date."
|