2022-10-25 10:08:41 -04:00
|
|
|
on:
|
|
|
|
push:
|
2024-04-14 07:10:43 -04:00
|
|
|
branches: [master]
|
2022-10-25 10:08:41 -04:00
|
|
|
pull_request:
|
2020-12-23 03:26:23 -05:00
|
|
|
name: Test
|
2022-12-02 03:18:47 -05:00
|
|
|
env:
|
2024-04-14 07:10:43 -04:00
|
|
|
GOPROXY: https://proxy.golang.org
|
|
|
|
GO111MODULE: on
|
|
|
|
SASS_VERSION: 1.63.2
|
|
|
|
DART_SASS_SHA_LINUX: 3ea33c95ad5c35fda6e9a0956199eef38a398f496cfb8750e02479d7d1dd42af
|
|
|
|
DART_SASS_SHA_MACOS: 11c70f259836b250b44a9cb57fed70e030f21f45069b467d371685855f1eb4f0
|
|
|
|
DART_SASS_SHA_WINDOWS: cd8cd36a619dd8e27f93d3186c52d70eb7d69472aa6c85f5094b29693e773f64
|
2022-05-03 03:23:47 -04:00
|
|
|
permissions:
|
|
|
|
contents: read
|
2020-12-23 03:26:23 -05:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-04-14 07:10:43 -04:00
|
|
|
go-version: [1.21.x, 1.22.x]
|
2020-12-23 03:26:23 -05:00
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2024-04-14 10:13:44 -04:00
|
|
|
- if: matrix.os == 'ubuntu-latest'
|
|
|
|
name: Free Disk Space (Ubuntu)
|
|
|
|
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
|
|
|
|
with:
|
|
|
|
# this might remove tools that are actually needed,
|
|
|
|
# if set to "true" but frees about 6 GB
|
|
|
|
tool-cache: false
|
|
|
|
android: true
|
|
|
|
dotnet: true
|
|
|
|
haskell: true
|
|
|
|
large-packages: true
|
|
|
|
docker-images: true
|
|
|
|
swap-storage: true
|
2024-04-14 07:10:43 -04:00
|
|
|
- name: Checkout code
|
2024-04-14 07:14:22 -04:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
2024-04-14 07:10:43 -04:00
|
|
|
- name: Install Go
|
2024-04-14 07:14:22 -04:00
|
|
|
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
|
2024-04-14 07:10:43 -04:00
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
check-latest: true
|
|
|
|
cache: true
|
|
|
|
cache-dependency-path: |
|
|
|
|
**/go.sum
|
|
|
|
**/go.mod
|
|
|
|
- name: Install Ruby
|
2024-04-14 07:14:22 -04:00
|
|
|
uses: ruby/setup-ruby@5f19ec79cedfadb78ab837f95b87734d0003c899
|
2024-04-14 07:10:43 -04:00
|
|
|
with:
|
|
|
|
ruby-version: "2.7"
|
|
|
|
bundler-cache: true #
|
|
|
|
- name: Install Python
|
2024-04-14 07:14:22 -04:00
|
|
|
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d
|
2024-04-14 07:10:43 -04:00
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
|
|
|
- name: Install Mage
|
|
|
|
run: go install github.com/magefile/mage@v1.15.0
|
|
|
|
- name: Install asciidoctor
|
2024-04-14 07:14:22 -04:00
|
|
|
uses: reitzig/actions-asciidoctor@03fcc74cd74880b697950c4930c9ec8a67c69ecc
|
2024-04-14 07:10:43 -04:00
|
|
|
- name: Install docutils
|
|
|
|
run: |
|
|
|
|
pip install docutils
|
|
|
|
rst2html --version
|
|
|
|
- if: matrix.os == 'ubuntu-latest'
|
|
|
|
name: Install pandoc on Linux
|
|
|
|
run: |
|
2020-12-23 03:26:23 -05:00
|
|
|
sudo apt-get update -y
|
|
|
|
sudo apt-get install -y pandoc
|
2024-04-14 07:10:43 -04:00
|
|
|
- if: matrix.os == 'macos-latest'
|
|
|
|
run: |
|
|
|
|
brew install pandoc
|
|
|
|
- if: matrix.os == 'windows-latest'
|
|
|
|
run: |
|
|
|
|
choco install pandoc
|
|
|
|
- run: pandoc -v
|
|
|
|
- if: matrix.os == 'windows-latest'
|
|
|
|
run: |
|
|
|
|
choco install mingw
|
|
|
|
- if: matrix.os == 'ubuntu-latest'
|
|
|
|
name: Install dart-sass Linux
|
|
|
|
run: |
|
|
|
|
echo "Install Dart Sass version ${SASS_VERSION} ..."
|
|
|
|
curl -LJO "https://github.com/sass/dart-sass/releases/download/${SASS_VERSION}/dart-sass-${SASS_VERSION}-linux-x64.tar.gz";
|
|
|
|
echo "${DART_SASS_SHA_LINUX} dart-sass-${SASS_VERSION}-linux-x64.tar.gz" | sha256sum -c;
|
|
|
|
tar -xvf "dart-sass-${SASS_VERSION}-linux-x64.tar.gz";
|
|
|
|
echo "$GOBIN"
|
|
|
|
echo "$GITHUB_WORKSPACE/dart-sass/" >> $GITHUB_PATH
|
|
|
|
- if: matrix.os == 'macos-latest'
|
|
|
|
name: Install dart-sass MacOS
|
|
|
|
run: |
|
|
|
|
echo "Install Dart Sass version ${SASS_VERSION} ..."
|
|
|
|
curl -LJO "https://github.com/sass/dart-sass/releases/download/${SASS_VERSION}/dart-sass-${SASS_VERSION}-macos-x64.tar.gz";
|
|
|
|
echo "${DART_SASS_SHA_MACOS} dart-sass-${SASS_VERSION}-macos-x64.tar.gz" | shasum -a 256 -c;
|
|
|
|
tar -xvf "dart-sass-${SASS_VERSION}-macos-x64.tar.gz";
|
|
|
|
echo "$GITHUB_WORKSPACE/dart-sass/" >> $GITHUB_PATH
|
|
|
|
- if: matrix.os == 'windows-latest'
|
|
|
|
name: Install dart-sass Windows
|
|
|
|
run: |
|
|
|
|
echo "Install Dart Sass version ${env:SASS_VERSION} ..."
|
|
|
|
curl -LJO "https://github.com/sass/dart-sass/releases/download/${env:SASS_VERSION}/dart-sass-${env:SASS_VERSION}-windows-x64.zip";
|
|
|
|
Expand-Archive -Path "dart-sass-${env:SASS_VERSION}-windows-x64.zip" -DestinationPath .;
|
|
|
|
echo "$env:GITHUB_WORKSPACE/dart-sass/" | Out-File -FilePath $Env:GITHUB_PATH -Encoding utf-8 -Append
|
|
|
|
- if: matrix.os == 'ubuntu-latest'
|
|
|
|
name: Install staticcheck
|
|
|
|
run: go install honnef.co/go/tools/cmd/staticcheck@latest
|
|
|
|
- if: matrix.os == 'ubuntu-latest'
|
|
|
|
name: Run staticcheck
|
|
|
|
run: staticcheck ./...
|
|
|
|
- if: matrix.os != 'windows-latest'
|
|
|
|
name: Check
|
|
|
|
run: |
|
|
|
|
sass --version;
|
|
|
|
mage -v check;
|
|
|
|
env:
|
|
|
|
HUGO_BUILD_TAGS: extended
|
|
|
|
- if: matrix.os == 'windows-latest'
|
|
|
|
# See issue #11052. We limit the build to regular test (no -race flag) on Windows for now.
|
|
|
|
name: Test
|
|
|
|
run: |
|
|
|
|
mage -v test;
|
|
|
|
env:
|
|
|
|
HUGO_BUILD_TAGS: extended
|
|
|
|
- name: Build tags
|
|
|
|
run: |
|
|
|
|
go install -tags extended,nodeploy
|
|
|
|
- if: matrix.os == 'ubuntu-latest'
|
|
|
|
name: Build for dragonfly
|
|
|
|
run: |
|
|
|
|
go install
|
|
|
|
env:
|
|
|
|
GOARCH: amd64
|
|
|
|
GOOS: dragonfly
|