Skip to content

Waf Python Tests

Waf Python Tests #948

Workflow file for this run

name: Waf Python Tests
"on":
workflow_dispatch:
inputs:
extra_resolve_options:
description: Extra Resolve Options
required: false
schedule:
- cron: 0 1 * * *
push:
branches:
- master
pull_request:
jobs:
waf:
name: Waf
runs-on:
- self-hosted
- builder
- docker
container:
image: ghcr.io/steinwurf/python-bindings:2.0.0
options: --user 0:0 --privileged
volumes:
- /home/buildbot/.ssh:/root/.ssh
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure
run: python3 waf configure
- name: Build
run: python3 waf
- name: Test
run: python3 waf --run_tests
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true