Skip to content

Commit

Permalink
fix: missing libtinfo5
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed Oct 26, 2024
1 parent 3e5f56d commit fadb4b0
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/actions/setup-pdfium/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,17 @@ runs:
- name: Install Just
uses: extractions/setup-just@v2

- name: Install libtinfo
shell: bash
run: |
sudo apt install -y libtinfo5
- name: Install LLVM and Clang
if: ${{ inputs.target_os == 'wasm' }}
uses: KyleMayes/install-llvm-action@v2
with:
version: '18.1'

- name: Install EMSDK
if: ${{ inputs.target_os == 'wasm' }}
uses: mymindstorm/setup-emsdk@v14
Expand All @@ -133,12 +144,6 @@ runs:
run: |
just -v build pack
- name: Install LLVM and Clang
if: ${{ inputs.target_os == 'wasm' }}
uses: KyleMayes/install-llvm-action@v2
with:
version: '18.1'

- name: Build & Install WASM
if: ${{ inputs.target_os == 'wasm' }}
shell: bash
Expand Down

0 comments on commit fadb4b0

Please sign in to comment.