Try to get the dart compile commands to execute on windows.
This commit is contained in:
parent
4a0089de3b
commit
322f70fe47
3 changed files with 10 additions and 2 deletions
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
|
@ -59,6 +59,10 @@ pipeline {
|
||||||
cd dart
|
cd dart
|
||||||
mkdir out
|
mkdir out
|
||||||
dart pub get
|
dart pub get
|
||||||
|
'''
|
||||||
|
|
||||||
|
bat '''
|
||||||
|
cd dart
|
||||||
|
|
||||||
dart compile exe -o out\\dbikc.exe bin\\dbikc.dart
|
dart compile exe -o out\\dbikc.exe bin\\dbikc.dart
|
||||||
dart compile exe -o out\\uuidgen.exe bin\\uuidgen.dart
|
dart compile exe -o out\\uuidgen.exe bin\\uuidgen.dart
|
||||||
|
@ -72,7 +76,7 @@ pipeline {
|
||||||
'''
|
'''
|
||||||
|
|
||||||
archiveArtifacts artifacts: "dart\\out\\*.exe", fingerprint: true
|
archiveArtifacts artifacts: "dart\\out\\*.exe", fingerprint: true
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
post {
|
post {
|
||||||
|
|
|
@ -6,4 +6,4 @@ A repo with simple tools or utilities that are separate from other projects.
|
||||||
|
|
||||||
## Linux
|
## Linux
|
||||||
|
|
||||||
Execute the command: `curl -fsSL https:// | bash -`
|
Execute the command: `curl -sSL https://git.zontreck.com/AriasCreations/SimpleHelperTools/raw/branch/main/installscript.sh | bash`
|
4
installscript.sh
Normal file
4
installscript.sh
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
echo "Starting up Aria's Creations tools installer"
|
||||||
|
PASS=$(zenity --password --title="SHT Installer" --timeout=120)
|
Loading…
Reference in a new issue