attempt to deliberately break build by importing package not in depen… #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# this runs on every commit/PR to test that we are properly building binaries that work | |
# we test this on each commit/PR to catch build problems early | |
name: Build and test HolmesGPT | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies and build | |
run: | | |
python -m pip install --upgrade pip setuptools pyinstaller | |
curl -sSL https://install.python-poetry.org | python3 - --version 1.4.0 | |
poetry config virtualenvs.create false | |
poetry install --no-root | |
sudo apt-get install -y binutils | |
pyinstaller holmes.py --add-data 'holmes/plugins/runbooks/*:holmes/plugins/runbooks' --add-data 'holmes/plugins/prompts/*:holmes/plugins/prompts' --add-data 'holmes/plugins/toolsets/*:holmes/plugins/toolsets' | |
ls dist | |
- name: Test the binary | |
shell: bash | |
run: | | |
dist/holmes/holmes version | |
if [ $? -ne 0 ]; then | |
echo "Binary test failed" | |
exit 1 | |
fi | |
echo "Binary test passed" |