1
0
mirror of https://github.com/flutter/samples.git synced 2026-04-17 04:22:16 +00:00
Configure CI to skip samples that only fail in beta
This commit is contained in:
Eric Windmill
2026-04-14 16:49:05 -07:00
committed by GitHub
parent dcaf555586
commit 7a04286eb7
22 changed files with 267 additions and 399 deletions

View File

@@ -0,0 +1,28 @@
// swift-tools-version: 5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.
//
// Generated file. Do not edit.
//
import PackageDescription
let package = Package(
name: "FlutterGeneratedPluginSwiftPackage",
platforms: [
.macOS("10.15")
],
products: [
.library(name: "FlutterGeneratedPluginSwiftPackage", type: .static, targets: ["FlutterGeneratedPluginSwiftPackage"])
],
dependencies: [
.package(name: "url_launcher_macos", path: "../.packages/url_launcher_macos")
],
targets: [
.target(
name: "FlutterGeneratedPluginSwiftPackage",
dependencies: [
.product(name: "url-launcher-macos", package: "url_launcher_macos")
]
)
]
)