Skip to content

Commit

Permalink
ci: list Linux font dir
Browse files Browse the repository at this point in the history
  • Loading branch information
yisibl committed Aug 7, 2023
1 parent 5496a80 commit 2d11a0a
Showing 1 changed file with 45 additions and 11 deletions.
56 changes: 45 additions & 11 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['14', '16', '18']
node: ['18']
runs-on: ubuntu-latest

steps:
Expand All @@ -210,6 +210,15 @@ jobs:
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: List fonts dir
run: |
ls /usr/share/fonts/
ls /usr/local/share/fonts/
shell: bash

- name: Run font-config
run: fc-list
shell: bash

- name: Install
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -259,8 +268,8 @@ jobs:
- host: windows-latest
target: x86_64-pc-windows-msvc
node:
- '14'
- '16'
# - '14'
# - '16'
- '18'
runs-on: ${{ matrix.settings.host }}
steps:
Expand Down Expand Up @@ -296,8 +305,8 @@ jobs:
fail-fast: false
matrix:
node:
- '14'
- '16'
# - '14'
# - '16'
- '18'
runs-on: ubuntu-latest
steps:
Expand All @@ -308,6 +317,11 @@ jobs:
node-version: ${{ matrix.node }}
check-latest: true
cache: yarn
- name: List fonts dir
run: |
ls /usr/share/fonts/
ls /usr/local/share/fonts/
shell: bash
- name: Cache NPM dependencies
uses: actions/cache@v3
with:
Expand All @@ -333,8 +347,8 @@ jobs:
fail-fast: false
matrix:
node:
- '14'
- '16'
# - '14'
# - '16'
- '18'
runs-on: ubuntu-latest
steps:
Expand All @@ -345,6 +359,11 @@ jobs:
node-version: ${{ matrix.node }}
check-latest: true
cache: yarn
- name: List fonts dir
run: |
ls /usr/share/fonts/
ls /usr/local/share/fonts/
shell: bash
- name: Cache NPM dependencies
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -372,8 +391,8 @@ jobs:
fail-fast: false
matrix:
node:
- '14'
- '16'
# - '14'
# - '16'
- '18'
runs-on: ubuntu-latest
steps:
Expand All @@ -384,6 +403,11 @@ jobs:
with:
name: bindings-aarch64-unknown-linux-gnu
path: .
- name: List fonts dir
run: |
ls /usr/share/fonts/
ls /usr/local/share/fonts/
shell: bash
- name: List packages
run: ls -R .
shell: bash
Expand Down Expand Up @@ -419,6 +443,11 @@ jobs:
with:
name: bindings-aarch64-unknown-linux-musl
path: .
- name: List fonts dir
run: |
ls /usr/share/fonts/
ls /usr/local/share/fonts/
shell: bash
- name: List packages
run: ls -R .
shell: bash
Expand Down Expand Up @@ -449,8 +478,8 @@ jobs:
fail-fast: false
matrix:
node:
- '14'
- '16'
# - '14'
# - '16'
- '18'
runs-on: ubuntu-latest
steps:
Expand All @@ -461,6 +490,11 @@ jobs:
with:
name: bindings-armv7-unknown-linux-gnueabihf
path: .
- name: List fonts dir
run: |
ls /usr/share/fonts/
ls /usr/local/share/fonts/
shell: bash
- name: List packages
run: ls -R .
shell: bash
Expand Down

0 comments on commit 2d11a0a

Please sign in to comment.