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
name: Build and Test Python Wheel | ||
on: | ||
push: | ||
branches: ["feature/poetry"] | ||
pull_request: | ||
branches: ["feature/poetry"] | ||
workflow_dispatch: | ||
env: | ||
POETRY_VERSION: "1.8.2" | ||
PYTHON_VERSION: "3.11" | ||
RUNNER_OS: "ubuntu-latest" | ||
jobs: | ||
build-wheel: | ||
runs-on: ${{ env.RUNNER_OS }} | ||
Check failure on line 17 in .github/workflows/test-wheel.yml GitHub Actions / Build and Test Python WheelInvalid workflow file
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
- name: Get full Python version | ||
id: full-python-version | ||
run: echo "version=$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info)))" >> $GITHUB_OUTPUT | ||
- name: Bootstrap poetry | ||
run: | | ||
curl -sSL https://install.python-poetry.org | POETRY_VERSION=${{ env.POETRY_VERSION }} python - | ||
- name: Update PATH (Linux and macOS) | ||
run: echo "$HOME/.local/bin" >> $GITHUB_PATH | ||
- name: Configure poetry | ||
run: poetry config virtualenvs.in-project true | ||
- name: Set up cache | ||
uses: actions/cache@v3 | ||
id: cache | ||
with: | ||
path: .venv | ||
key: venv-${{ env.RUNNER_OS }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }} | ||
- name: Ensure cache is healthy | ||
if: steps.cache.outputs.cache-hit == 'true' | ||
run: timeout 10s poetry run pip --version || rm -rf .venv | ||
- name: Make build script executable | ||
run: chmod +x ./.github/scripts/build.sh | ||
- name: Build Wheel | ||
run: | | ||
./.github/scripts/build.sh | ||
WHEEL_FILE=$(ls dist/*.whl) | ||
echo "WHEEL_FILE=${WHEEL_FILE}" >> $GITHUB_ENV | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: built-wheel | ||
path: dist/*.whl | ||
test-wheel: | ||
needs: build-wheel | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.9", "3.10", "3.11"] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Dependencies | ||
run: pip install --upgrade pip | ||
- name: Download Artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: built-wheel | ||
- name: Install Wheel | ||
run: | | ||
pip install --user *.whl | ||
pip install --user *.whl[dev] | ||
- name: Run Tests | ||
run: make test | ||
- name: Start server in the background | ||
run: | | ||
nemoguardrails server & | ||
echo "SERVER_PID=$!" >> $GITHUB_ENV | ||
- name: Wait for server to be up | ||
run: | | ||
echo "Waiting for server to start..." | ||
while ! curl --output /dev/null --silent --head --fail http://localhost:8000; do | ||
printf '.' | ||
sleep 1 | ||
done | ||
echo "Server is up!" | ||
- name: Check server status | ||
run: | | ||
RESPONSE_CODE=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:8000/v1/rails/configs) | ||
if [ "$RESPONSE_CODE" -ne 200 ]; then | ||
echo "Server responded with code $RESPONSE_CODE." | ||
exit 1 | ||
fi | ||
- name: Stop server | ||
if: ${{ success() }} | ||
run: | | ||
kill $SERVER_PID |