Skip to content

Commit 2612a5a

Browse files
committed
Use official protoc static binaries on all linux platforms
1 parent a6c50a4 commit 2612a5a

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,6 @@ jobs:
7979
container:
8080
image: docker.io/library/ruby:${{ matrix.ruby-version }}-alpine
8181

82-
env:
83-
PROTOC_BIN: /usr/bin/protoc
84-
8582
strategy:
8683
fail-fast: false
8784
matrix:
@@ -95,7 +92,7 @@ jobs:
9592
uses: actions/checkout@v4
9693

9794
- name: Install dependencies
98-
run: apk add alpine-sdk protoc
95+
run: apk add build-base
9996

10097
- name: Bundle
10198
run: bundle install

ext/sass/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ module SassConfig
410410
os = case Platform::OS
411411
when 'darwin'
412412
'osx'
413-
when 'linux'
413+
when 'linux', 'linux-android', 'linux-musl', 'linux-uclibc'
414414
'linux'
415415
when 'windows'
416416
'windows'

0 commit comments

Comments
 (0)