diff options
author | Max Graey <maxgraey@gmail.com> | 2021-10-29 00:16:28 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 14:16:28 -0700 |
commit | 446d97617f02aecf83153fe70f2cc447a9f5cf42 (patch) | |
tree | 5b9ae434231b0d75524ed3bb0f0c1ec7ad246af8 | |
parent | 77be470649a40c2995f084aeab87322b942f9d88 (diff) | |
download | binaryen-446d97617f02aecf83153fe70f2cc447a9f5cf42.tar.gz binaryen-446d97617f02aecf83153fe70f2cc447a9f5cf42.tar.bz2 binaryen-446d97617f02aecf83153fe70f2cc447a9f5cf42.zip |
[CI] Fix alpine builds (#4284)
It seems that now alpine requires pip3.
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41bbb031e..bc762704f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -171,7 +171,7 @@ jobs: - name: install packages run: | ./alpine.sh apk update - ./alpine.sh apk add build-base cmake git python3 clang ninja + ./alpine.sh apk add build-base cmake git python3 py3-pip clang ninja - name: install python dev dependencies run: ./alpine.sh pip3 install -r requirements-dev.txt |