Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Use ubuntu-latest again after 18.04 network problems are solved #34

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/isotovideo-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: isotovideo - github action example
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
container:
image: "registry.opensuse.org/devel/openqa/containers/isotovideo:qemu-x86-jq"
steps:
Expand Down
7 changes: 1 addition & 6 deletions .github/workflows/isotovideo-check-all-test-modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,7 @@ name: isotovideo - check all test modules
on: [push, pull_request]
jobs:
test:
# "ubuntu-latest" at time of writing 2020-12-14 is Ubuntu 18.04 showing a
# network problem "level=error msg="could not find slirp4netns, the
# network namespace won't be configured: exec: \"slirp4netns\": executable
# file not found in $PATH""
# which can be fixed with a more recent version of Ubuntu explicitly
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run isotovideo against test code, fail if any test module failed
Expand Down
Loading