Skip to content

Commit a723846

Browse files
Merge branch 'flutter:main' into Flutter-3.27-beta
2 parents ca262a5 + e9dbb55 commit a723846

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

.idx/dev.nix

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# To learn more about how to use Nix to configure your environment
2+
# see: https://developers.google.com/idx/guides/customize-idx-env
3+
{ pkgs, ... }: {
4+
# Which nixpkgs channel to use.
5+
channel = "stable-24.05"; # or "unstable"
6+
7+
# Use https://search.nixos.org/packages to find packages
8+
packages = [
9+
pkgs.jdk17
10+
pkgs.unzip
11+
];
12+
13+
# Sets environment variables in the workspace
14+
env = {};
15+
idx = {
16+
# Search for the extensions you want on https://open-vsx.org/ and use "publisher.id"
17+
extensions = [
18+
"Dart-Code.dart-code"
19+
"Dart-Code.flutter"
20+
];
21+
workspace = {
22+
# Runs when a workspace is first created
23+
onCreate = {
24+
updateStable = "flutter channel stable && flutter upgrade";
25+
};
26+
};
27+
};
28+
}

flutter_ci_script_master.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ declare -a CODELABS=(
2525
"haiku_generator"
2626
"homescreen_codelab"
2727
"in_app_purchases"
28-
"intro_flutter_gpu"
28+
# TODO(domesticmouse): Building assets for package:flutter_scene_importer failed.
29+
# "intro_flutter_gpu"
2930
"namer"
3031
"next-gen-ui"
3132
"testing_codelab"

0 commit comments

Comments
 (0)