Skip to content

Commit

Permalink
fix: alpine tests (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx authored Jun 30, 2024
1 parent 6917f08 commit dac09c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- 'alpine-3.17'
package_ruby_ver:
- '3.1.6'
- '3.2.3'
- '3.2.4'
container:
image: ghcr.io/tamatebako/tebako-${{ matrix.container }}:latest

Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
- 'alpine-3.17'
package_ruby_ver:
- '3.1.6'
- '3.2.3'
- '3.2.4'

steps:
- name: Checkout fontist
Expand All @@ -119,8 +119,8 @@ jobs:
- name: Run smoke test Ubuntu
if: contains(matrix.container, 'ubuntu')
run: ./fontist-package help
run: ${{github.workspace}}/fontist-package help

- name: Run smoke test Alpine
if: contains(matrix.container, 'alpine')
run: docker run -t alpine:latest ./fontist-package help
run: docker run -v ${{github.workspace}}:/mnt/w -t alpine:latest /bin/sh -c "apk add --no-cache libstdc++; /mnt/w/fontist-package help"

0 comments on commit dac09c1

Please sign in to comment.