Add startmode migration #421
Workflow file for this run
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: "migrate-wicked CI - Integration Tests" | |
on: [push, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
integration-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v3 | |
- name: Start container | |
run: podman run --detach --name migrate-wicked -e CARGO_TERM_COLOR=always -v .:/checkout registry.opensuse.org/home/jcronenberg/github-ci/containers/opensuse/migrate-wicked-testing:latest | |
- name: Build migrate-wicked | |
run: podman exec migrate-wicked bash -c "cd /checkout/ && cargo build" | |
- name: Run migration integration tests | |
run: podman exec migrate-wicked bash -c "/checkout/tests/test.sh" |