This commit is contained in:
Alexander Thomas 2021-05-10 16:05:58 +02:00
parent 0712cb59ae
commit 91ce82bd8f
5 changed files with 22 additions and 0 deletions

10
library/dart Normal file
View File

@ -0,0 +1,10 @@
Maintainers: Alexander Thomas <athom@google.com> (@athomas), Tony Pujals <tonypujals@google.com> (@tonypujals)
GitRepo: https://github.com/dart-lang/dart-docker.git
GitFetch: refs/heads/main
GitCommit: c3f2dbac4f552bd5e94965dd6de80bcdf897d963
Tags: 2.12.4-sdk, 2.12-sdk, 2-sdk, stable-sdk, sdk, 2.12.4, 2.12, 2, stable, latest
Directory: stable/buster
Tags: 2.13.0-211.14.beta-sdk, beta-sdk, 2.13.0-211.14.beta, beta
Directory: beta/buster

View File

@ -0,0 +1,3 @@
void main() {
print('Hello World!');
}

View File

@ -0,0 +1 @@
Hello World!

View File

@ -0,0 +1 @@
../run-dart-in-container.sh

View File

@ -0,0 +1,7 @@
#!/bin/bash
set -e
testDir="$(readlink -f "$(dirname "$BASH_SOURCE")")"
runDir="$(dirname "$(readlink -f "$BASH_SOURCE")")"
source "$runDir/run-in-container.sh" "$testDir" "$1" dart ./container.dart