mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-03 00:00:24 -04:00
Currently, the runner images enable break-system-packages globally. However, this workaround will be removed by the end of March. So we switch to installing these packages as intended via distro (the alternative would be to use pipx, at least for tox).
14 lines
318 B
YAML
14 lines
318 B
YAML
name: "Default CI Build Steps"
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: "Install Dependencies"
|
|
run: ./scripts/test.sh deps
|
|
shell: bash
|
|
- name: "Build Dependencies"
|
|
run: ./scripts/test.sh build-deps
|
|
shell: bash
|
|
- name: "Build/Tests"
|
|
run: ./scripts/test.sh
|
|
shell: bash
|