We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4575730 commit c29acefCopy full SHA for c29acef
.github/workflows/docker.yml
@@ -60,10 +60,11 @@ jobs:
60
tool: cargo-clone
61
62
- name: install cross compile tools
63
- run:
64
- sudo apt update && sudo apt install -y crossbuild-essential-${{ matrix.docker_arch }}
+ run: |
65
sudo dpkg --add-architecture ${{ matrix.docker_arch }}
66
- sudo apt update && sudo apt install -y libssl-dev:${{ matrix.docker_arch }}
+ sudo apt update && sudo apt install -y \
+ crossbuild-essential-${{ matrix.docker_arch }} \
67
+ libssl-dev:${{ matrix.docker_arch }}
68
69
- name: Download and build dioxus-cli
70
run: |
0 commit comments