test: fix sparsemap unit test #3244
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: "[test] unit test" | |
on: | |
push: | |
branches: ["*"] | |
pull_request: | |
branches: ["main"] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
USE_CONFIG_COMMIT_KW: "[ci:usecfg]" | |
SIIBRA_LOG_LEVEL: "INFO_WO_PROGRESS_BARS" | |
jobs: | |
use-custom-cfg: | |
runs-on: ubuntu-latest | |
outputs: | |
USE_REF: ${{ steps.use-ref.outputs.USE_REF }} | |
env: | |
# see https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable | |
COMMIT_MSG: ${{ github.event.head_commit.message }} | |
steps: | |
- uses: actions/checkout@v4 | |
- id: "use-ref" | |
run: | | |
SED_S_PATTERN=$(echo '${{ env.USE_CONFIG_COMMIT_KW }}' | sed 's/\[/\\[/' | sed 's/]/\\]/') | |
echo "$COMMIT_MSG" | while IFS= read -r line | |
do | |
if [[ "$line" == "${{ env.USE_CONFIG_COMMIT_KW }}"* ]] | |
then | |
echo "Found usecfg line in commit message: $line" | |
USE_REF=$(echo $line | sed "s/$SED_S_PATTERN *//") | |
echo "Use Ref: $USE_REF" | |
echo USE_REF=$USE_REF >> $GITHUB_OUTPUT | |
fi | |
done | |
lint: | |
uses: ./.github/workflows/_lint.yaml | |
with: | |
os: ubuntu-latest | |
python-version: "3.8" | |
check-importable: | |
needs: "use-custom-cfg" | |
uses: ./.github/workflows/_importable.yaml | |
with: | |
os: ubuntu-20.04 # use ubuntu-latest when python 3.7 is dropped | |
python-version: ${{ matrix.python-version }} | |
use-cfg: ${{ needs.use-custom-cfg.outputs.USE_REF }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8", "3.7"] | |
unit-tests-full: | |
if: ${{ github.event_name == 'pull_request' }} | |
needs: "use-custom-cfg" | |
uses: ./.github/workflows/_unittest.yaml | |
with: | |
os: ubuntu-20.04 # use ubuntu-latest when python 3.7 is dropped | |
python-version: ${{ matrix.python-version }} | |
use-cfg: ${{ needs.use-custom-cfg.outputs.USE_REF }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8", "3.7"] | |
unit-tests-fast: | |
if: ${{ github.event.pull_request == null }} | |
needs: "use-custom-cfg" | |
uses: ./.github/workflows/_unittest.yaml | |
with: | |
os: ubuntu-latest | |
python-version: "3.8" | |
use-cfg: ${{ needs.use-custom-cfg.outputs.USE_REF }} | |
e2e-tests-full: | |
if: ${{ github.event_name == 'pull_request' }} | |
needs: "use-custom-cfg" | |
uses: ./.github/workflows/_e2e.yaml | |
with: | |
os: ubuntu-20.04 # use ubuntu-latest when python 3.7 is dropped | |
python-version: ${{ matrix.python-version }} | |
use-cfg: ${{ needs.use-custom-cfg.outputs.USE_REF }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12", "3.11", "3.10", "3.9", "3.8", "3.7"] | |
e2e-tests-fast: | |
if: ${{ github.event.pull_request == null }} | |
needs: "use-custom-cfg" | |
uses: ./.github/workflows/_e2e.yaml | |
with: | |
os: ubuntu-latest | |
python-version: "3.8" | |
use-cfg: ${{ needs.use-custom-cfg.outputs.USE_REF }} | |
test-examples: | |
needs: 'use-custom-cfg' | |
uses: ./.github/workflows/_run_examples.yaml | |
with: | |
os: ubuntu-latest | |
python-version: "3.8" | |
use-cfg: ${{ needs.use-custom-cfg.outputs.USE_REF }} |