File tree 1 file changed +15
-1
lines changed
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 68
68
sudo apt-get install --no-install-recommends -y \
69
69
genisoimage \
70
70
isomd5sum \
71
- hardlink
71
+ hardlink \
72
+ libgpgme-dev libassuan-dev libbtrfs-dev pkg-config libdevmapper-dev
73
+ - name : Install skopeo
74
+ # NOTE: We install skopeo from sources since the version available in "classic"
75
+ # repositories is too old and not compatible with docker > 1.25 (which is the one embedded
76
+ # in the image we use here)
77
+ env :
78
+ SKOPEO_VERSION : 1.15.1
79
+ run : |
80
+ curl -Lo skopeo.tar.gz https://github.com/containers/skopeo/archive/refs/tags/v${SKOPEO_VERSION}.tar.gz && \
81
+ tar -zxf skopeo.tar.gz && \
82
+ cd skopeo-${SKOPEO_VERSION} && \
83
+ make bin/skopeo && \
84
+ sudo mv bin/skopeo /usr/local/bin/ && \
85
+ cd .. && rm -rf skopeo.tar.gz skopeo-${SKOPEO_VERSION}
72
86
- name : Build everything
73
87
run : ./doit.sh -n 4 --verbosity 2 --failure-verbosity 2
74
88
- name : Prepare artifacts
You can’t perform that action at this time.
0 commit comments