Fix
This commit is contained in:
parent
6ea45868db
commit
ff74c3de01
1 changed files with 15 additions and 3 deletions
|
@ -7,13 +7,16 @@ jobs:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container: muslcc/x86_64:i686-linux-musl
|
container: muslcc/x86_64:i686-linux-musl
|
||||||
outputs:
|
outputs:
|
||||||
version: ${{ steps.build_socat.outputs.PACKAGED_VERSION }}
|
version: "${{ steps.build_socat.outputs.PACKAGED_VERSION }}"
|
||||||
steps:
|
steps:
|
||||||
|
- name: Install dependencies
|
||||||
|
run: sudo apk update && sudo apk add bash nodejs git-lfs
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install build dependencies
|
||||||
run: sudo apk update && sudo apk add bash && sudo bash build/install_deps_alpine.sh
|
run: sudo bash build/install_deps_alpine.sh
|
||||||
|
|
||||||
- name: Install testing dependencies
|
- name: Install testing dependencies
|
||||||
run: apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing yodl
|
run: apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing yodl
|
||||||
|
@ -33,6 +36,15 @@ jobs:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container: muslcc/x86_64:x86_64-linux-musl
|
container: muslcc/x86_64:x86_64-linux-musl
|
||||||
steps:
|
steps:
|
||||||
|
- name: Install dependencies
|
||||||
|
run: sudo apk update && sudo apk add bash nodejs git-lfs
|
||||||
|
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install build dependencies
|
||||||
|
run: sudo bash build/install_deps_alpine.sh
|
||||||
|
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue