Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
f4b73c7e
Commit
f4b73c7e
authored
Sep 11, 2014
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scripts: build should do everything now
parent
f4ca5eb1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
54 deletions
+11
-54
scripts/build.sh
scripts/build.sh
+11
-5
scripts/dist.sh
scripts/dist.sh
+0
-49
No files found.
scripts/build.sh
View file @
f4b73c7e
...
...
@@ -47,10 +47,8 @@ gox \
# Make sure "packer-packer" is renamed properly
for
PLATFORM
in
$(
find ./pkg
-mindepth
1
-maxdepth
1
-type
d
)
;
do
set
+e
# The asterisk allows for the packer directory to be a symlink
# (to a directory that must begin with the word 'packer')
mv
${
PLATFORM
}
/packer-packer
*
.exe
${
PLATFORM
}
/packer.exe 2>/dev/null
mv
${
PLATFORM
}
/packer-packer
*
${
PLATFORM
}
/packer 2>/dev/null
mv
${
PLATFORM
}
/packer-packer.exe
${
PLATFORM
}
/packer.exe 2>/dev/null
mv
${
PLATFORM
}
/packer-packer
${
PLATFORM
}
/packer 2>/dev/null
set
-e
done
...
...
@@ -76,14 +74,22 @@ done
if
[
"
${
TF_DEV
}
x"
=
"x"
]
;
then
# Zip and copy to the dist dir
echo
"==> Packaging..."
rm
-rf
./pkg/dist
mkdir
-p
./pkg/dist
for
PLATFORM
in
$(
find ./pkg
-mindepth
1
-maxdepth
1
-type
d
)
;
do
OSARCH
=
$(
basename
${
PLATFORM
}
)
echo
"-->
${
OSARCH
}
"
pushd
$PLATFORM
>
/dev/null 2>&1
zip ../
${
OSARCH
}
.zip ./
*
zip ../
dist/packer_
${
OSARCH
}
.zip ./
*
popd
>
/dev/null 2>&1
done
# Make the checksums
echo
"==> Checksumming..."
pushd
./pkg/dist
>
/dev/null 2>&1
shasum
-a256
*
>
./packer_
${
VERSION
}
_SHA256SUMS
popd
>
/dev/null 2>&1
fi
# Done!
...
...
scripts/dist.sh
deleted
100755 → 0
View file @
f4ca5eb1
#!/bin/bash
set
-e
# Get the version from the command line
VERSION
=
$1
if
[
-z
$VERSION
]
;
then
echo
"Please specify a version."
exit
1
fi
# Make sure we have a bintray API key
if
[
-z
$BINTRAY_API_KEY
]
;
then
echo
"Please set your bintray API key in the BINTRAY_API_KEY env var."
exit
1
fi
# Get the parent directory of where this script is.
SOURCE
=
"
${
BASH_SOURCE
[0]
}
"
while
[
-h
"
$SOURCE
"
]
;
do
SOURCE
=
"
$(
readlink
"
$SOURCE
"
)
"
;
done
DIR
=
"
$(
cd
-P
"
$(
dirname
"
$SOURCE
"
)
/.."
&&
pwd
)
"
# Change into that dir because we expect that
cd
$DIR
# Zip all the files
rm
-rf
./pkg/dist
mkdir
-p
./pkg/dist
for
FILENAME
in
$(
find ./pkg
-mindepth
1
-maxdepth
1
-type
f
)
;
do
FILENAME
=
$(
basename
$FILENAME
)
cp
./pkg/
${
FILENAME
}
./pkg/dist/packer_
${
VERSION
}
_
${
FILENAME
}
done
# Make the checksums
pushd
./pkg/dist
shasum
-a256
*
>
./packer_
${
VERSION
}
_SHA256SUMS
popd
# Upload
for
ARCHIVE
in
./pkg/dist/
*
;
do
ARCHIVE_NAME
=
$(
basename
${
ARCHIVE
}
)
echo
Uploading:
$ARCHIVE_NAME
curl
\
-T
${
ARCHIVE
}
\
-umitchellh
:
${
BINTRAY_API_KEY
}
\
"https://api.bintray.com/content/mitchellh/packer/packer/
${
VERSION
}
/
${
ARCHIVE_NAME
}
"
done
exit
0
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment