mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 13:09:22 -06:00
cc2586d250
* CI: ee msi build * shellcheck * Fake it so that we get a ee msi build on pull request runs * fix error in prep job * save msi for testing * get enterprise zip * Fixes to version and hash detection. * Removes ci test code
12 lines
203 B
Bash
Executable File
12 lines
203 B
Bash
Executable File
#!/bin/bash
|
|
|
|
_image="ee-msi-build"
|
|
_container="ee-build"
|
|
|
|
docker build -t $_image .
|
|
|
|
docker run --rm -d --name $_container $_image sleep 100
|
|
docker cp $_container:/tmp/scratch .
|
|
docker stop $_container
|
|
|