Skip to content

Commit f32ec4f

Browse files
ntkmenex3
andauthored
Fix riscv64 release (#2506)
Co-authored-by: Natalie Weizenbaum <[email protected]>
1 parent 7ab44ef commit f32ec4f

File tree

7 files changed

+11
-13
lines changed

7 files changed

+11
-13
lines changed

.github/workflows/build-linux.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- image: docker.io/library/dart
2727
platform: linux/arm/v7
2828
target: linux-arm
29-
- image: docker.io/library/debian:unstable-slim
29+
- image: docker.io/library/debian:trixie-slim
3030
platform: linux/riscv64
3131
target: linux-riscv64
3232
- image: ghcr.io/dart-musl/dart
@@ -70,7 +70,7 @@ jobs:
7070
run: docker run --privileged --rm registry.fedoraproject.org/fedora-minimal /bin/sh -c "microdnf install --assumeyes --nodocs --setopt=install_weak_deps=False qemu-user-static systemd-udev && mount binfmt_misc -t binfmt_misc /proc/sys/fs/binfmt_misc && /usr/lib/systemd/systemd-binfmt --unregister && /usr/lib/systemd/systemd-binfmt"
7171

7272
- name: Build
73-
if: matrix.image != 'ghcr.io/dart-android/dart' && matrix.image != 'docker.io/library/debian:unstable-slim'
73+
if: matrix.image != 'ghcr.io/dart-android/dart' && matrix.image != 'docker.io/library/debian:trixie-slim'
7474
run: |
7575
docker run --rm -i \
7676
--platform ${{ matrix.platform }} \
@@ -99,10 +99,10 @@ jobs:
9999
EOF
100100
101101
# https://github.com/dart-lang/dart-docker/issues/96#issuecomment-1669860829
102-
# There is no official riscv64 dart container image yet, build on debian:unstable instead.
102+
# There is no official riscv64 dart container image yet, build on debian:trixie instead.
103103
# The setup is adopted from: https://github.com/dart-lang/dart-docker/blob/main/Dockerfile-debian.template
104104
- name: Build
105-
if: matrix.image == 'docker.io/library/debian:unstable-slim'
105+
if: matrix.image == 'docker.io/library/debian:trixie-slim'
106106
run: |
107107
DART_CHANNEL=stable
108108
DART_VERSION=$(curl -fsSL https://storage.googleapis.com/dart-archive/channels/$DART_CHANNEL/release/latest/VERSION | yq .version)
@@ -115,7 +115,7 @@ jobs:
115115
${{ matrix.image }} <<'EOF'
116116
set -e
117117
apt-get update
118-
apt-get install -y --no-install-recommends ca-certificates curl dnsutils git openssh-client unzip
118+
apt-get install -y --no-install-recommends bind9-dnsutils ca-certificates curl git openssh-client unzip
119119
120120
export DART_SDK=/usr/lib/dart
121121
export PATH=$DART_SDK/bin:/root/.pub-cache/bin:$PATH

CHANGELOG.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
## 1.85.0-dev
2-
3-
* No user-visible changes.
1+
## 1.85.0
42

53
* No longer fully trim redundant selectors generated by `@extend`. This caused
64
unacceptable performance issues for certain heavy users of `@extend`. We'll

pkg/sass-parser/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.4.14-dev
1+
## 0.4.14
22

33
* Add support for parsing color expressions.
44

pkg/sass-parser/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass-parser",
3-
"version": "0.4.14-dev",
3+
"version": "0.4.14",
44
"description": "A PostCSS-compatible wrapper of the official Sass parser",
55
"repository": "sass/sass",
66
"author": "Google Inc.",

pkg/sass_api/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 15.2.0-dev
1+
## 15.2.0
22

33
* No user-visible changes.
44

pkg/sass_api/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: sass_api
22
# Note: Every time we add a new Sass AST node, we need to bump the *major*
33
# version because it's a breaking change for anyone who's implementing the
44
# visitor interface(s).
5-
version: 15.2.0-dev
5+
version: 15.2.0
66
description: Additional APIs for Dart Sass.
77
homepage: https://github.com/sass/dart-sass
88

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sass
2-
version: 1.85.0-dev
2+
version: 1.85.0
33
description: A Sass implementation in Dart.
44
homepage: https://github.com/sass/dart-sass
55

0 commit comments

Comments
 (0)