Instructions for DEB/RPM build, doing the temporary workaround until the scripts are fully working. #1100
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: smoke_test | |
on: | |
push: | |
paths: | |
- 'smoke_tests/**' | |
branches: | |
- "*" | |
tags: | |
- "*" | |
pull_request: | |
paths: | |
- 'smoke_tests/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- run: python -m pip install -U pip setuptools | |
- run: python -m pip install tox | |
- name: Run smoke tests (localdeps) | |
env: | |
FUNCX_SMOKE_CLIENT_ID: ${{ secrets.API_CLIENT_ID }} | |
FUNCX_SMOKE_CLIENT_SECRET: ${{ secrets.API_CLIENT_SECRET }} | |
run: | | |
cd smoke_tests | |
tox -e localdeps |