forked from gohugoio/hugo
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to v2 of the Dart Sass Embedded Protocol
Fixes gohugoio#11059
- Loading branch information
Showing
11 changed files
with
261 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
name: TestDartSassV1 | ||
env: | ||
GOPROXY: https://proxy.golang.org | ||
GO111MODULE: on | ||
DART_SASS_VERSION: 1.56.2 | ||
DART_SASS_SHA_LINUX: 9e4f455f7b8619959d7878af2862383be58392eb963a14ff87cc512c03701e2a | ||
DART_SASS_SHA_MACOS: 5992e979e2c30ec363f8e338822bb2b4443c74232b3340501a76180f5652cb09 | ||
DART_SASS_SHA_WINDOWS: 8d3d9117c54840e3e6a4919e43acf75ea52f28a64fc87a8e29d80ec72ee36cfb | ||
permissions: | ||
contents: read | ||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
go-version: [1.20.x] | ||
os: [ubuntu-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab | ||
- name: Install Go | ||
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 | ||
with: | ||
go-version: ${{ matrix.go-version }} | ||
check-latest: true | ||
cache: true | ||
cache-dependency-path: | | ||
**/go.sum | ||
**/go.mod | ||
- name: Install Ruby | ||
uses: ruby/setup-ruby@ee2113536afb7f793eed4ce60e8d3b26db912da4 | ||
with: | ||
ruby-version: '2.7' | ||
bundler-cache: true # | ||
- name: Install Python | ||
uses: actions/setup-python@3105fb18c05ddd93efea5f9e0bef7a03a6e9e7df | ||
with: | ||
python-version: '3.x' | ||
- name: Install Mage | ||
run: go install github.com/magefile/mage@v1.15.0 | ||
- name: Install asciidoctor | ||
uses: reitzig/actions-asciidoctor@7570212ae20b63653481675fb1ff62d1073632b0 | ||
- name: Install docutils | ||
run: | | ||
pip install docutils | ||
rst2html.py --version | ||
- if: matrix.os == 'ubuntu-latest' | ||
name: Install pandoc on Linux | ||
run: | | ||
sudo apt-get update -y | ||
sudo apt-get install -y pandoc | ||
- if: matrix.os == 'macos-latest' | ||
run: | | ||
brew install pandoc | ||
- if: matrix.os == 'windows-latest' | ||
run: | | ||
Choco-Install -PackageName pandoc | ||
- run: pandoc -v | ||
- name: Install dart-sass-embedded Linux | ||
run: | | ||
echo "Install Dart Sass version ${DART_SASS_VERSION} ..." | ||
curl -LJO "https://github.com/sass/dart-sass-embedded/releases/download/${DART_SASS_VERSION}/sass_embedded-${DART_SASS_VERSION}-linux-x64.tar.gz"; | ||
echo "${DART_SASS_SHA_LINUX} sass_embedded-${DART_SASS_VERSION}-linux-x64.tar.gz" | sha256sum -c; | ||
tar -xvf "sass_embedded-${DART_SASS_VERSION}-linux-x64.tar.gz"; | ||
echo "$GITHUB_WORKSPACE/sass_embedded/" >> $GITHUB_PATH | ||
- name: Check | ||
run: | | ||
sass --version | ||
mage -v check; | ||
env: | ||
HUGO_BUILD_TAGS: extended |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.