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

UnixPB: Include installation of docker-buildx plugin for Ubuntu 20+ #3532

Merged
merged 7 commits into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from 5 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/build_vagrant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

- name: Update Repos
run: sudo apt-get update
run: sudo apt-get update || true
steelhead31 marked this conversation as resolved.
Show resolved Hide resolved

- name: Install Ansible
run: sudo apt-get install ansible
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@
use: auto # automatic select package manager to use yum, apt and so on
when: (ansible_distribution == "Ubuntu" and ansible_distribution_major_version | int >= 20)

- name: Install docker build on Ubuntu 22+
steelhead31 marked this conversation as resolved.
Show resolved Hide resolved
package:
name:
- docker-buildx
state: present
use: auto # automatic select package manager to use yum, apt and so on
when: (ansible_distribution == "Ubuntu" and ansible_distribution_major_version | int >= 20)

- name: Install for SLES # zypper does not support in package module
include_tasks: sles.yml
when:
Expand Down
Loading