File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,15 @@ jobs:
123123 repo-token : ${{ secrets.GITHUB_TOKEN }}
124124 version : 3.x
125125
126+ - name : Install Latest Docker and QEMU
127+ run : |
128+ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
129+ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
130+ sudo apt-get update
131+ sudo apt-get install docker-ce
132+ sudo apt-get install qemu-user-static
133+ docker --version
134+
126135 - name : Build
127136 run : |
128137 PACKAGE_NAME_PREFIX=${{ needs.package-name-prefix.outputs.prefix }}
Original file line number Diff line number Diff line change 6666 repo-token : ${{ secrets.GITHUB_TOKEN }}
6767 version : 3.x
6868
69+ - name : Install Latest Docker and QEMU
70+ run : |
71+ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
72+ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
73+ sudo apt-get update
74+ sudo apt-get install docker-ce
75+ sudo apt-get install qemu-user-static
76+ docker --version
77+
6978 - name : Build
7079 run : task dist:${{ matrix.os.task }}
7180
You can’t perform that action at this time.
0 commit comments