Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
069ab78
Update .cbuildci.yml
amekkawi-office Jul 7, 2018
95c1995
Update .cbuildci.yml
amekkawi-office Jul 7, 2018
fdb2c3e
Update .cbuildci.yml
amekkawi-office Jul 7, 2018
300b842
Update .cbuildci.yml
amekkawi-office Jul 7, 2018
4413f28
Update .cbuildci.yml
amekkawi-office Jul 7, 2018
08116ca
Update .cbuildci.yml
amekkawi-office Aug 24, 2018
1923f6f
Update buildspec.yml
amekkawi-office Aug 24, 2018
1c4b458
Update buildspec.yml
amekkawi-office Aug 24, 2018
6ad3538
Update .cbuildci.yml
amekkawi-office Aug 24, 2018
fbc1b72
Update buildspec.yml
amekkawi-office Aug 24, 2018
4df20d4
Update buildspec.yml
amekkawi-office Aug 24, 2018
77c6b1e
Update buildspec.yml
amekkawi-office Aug 24, 2018
da4e4d8
Update buildspec.yml
amekkawi-office Aug 24, 2018
00cd698
Update buildspec.yml
amekkawi-office Aug 24, 2018
5fbf51a
Update buildspec.yml
amekkawi-office Aug 24, 2018
fa0f2af
Update buildspec.yml
amekkawi-office Aug 24, 2018
1cdf6cf
Create package.json
amekkawi-office Aug 25, 2018
f45f663
Update buildspec.yml
amekkawi-office Aug 25, 2018
17bd566
Update buildspec.yml
amekkawi-office Aug 25, 2018
c57e6b6
Update buildspec.yml
amekkawi-office Aug 25, 2018
725a463
Update .cbuildci.yml
amekkawi-office Aug 25, 2018
991112e
Update buildspec.yml
amekkawi-office Aug 25, 2018
f683321
Update buildspec.yml
amekkawi-office Aug 25, 2018
684ea53
Update buildspec.yml
amekkawi-office Aug 25, 2018
0b8ac4b
Add files via upload
amekkawi-office Aug 25, 2018
e543c14
Add files via upload
amekkawi-office Aug 25, 2018
a964061
Update buildspec.yml
amekkawi-office Aug 25, 2018
1cf6e48
Update buildspec.yml
amekkawi-office Aug 25, 2018
6ab4315
Add files via upload
amekkawi-office Aug 25, 2018
ed56dac
Update buildspec.yml
amekkawi-office Aug 25, 2018
90c7aa4
Update .gitignore
amekkawi-office Jun 17, 2019
90b7ae8
Update .gitignore
amekkawi-office Jun 17, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 2 additions & 18 deletions .cbuildci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,11 @@ defaults:
# stopIfNotBranchHead: false
timeoutInMinutes: 10
image: 'aws/codebuild/nodejs:8.11.0'
useCache: true
environmentVariables:
- name: SLEEP_TIME
value: "30"
value: "10"

builds:
lint-quick:
commitStatus: awsbuild/linting-quick
environmentVariables:
- name: SLEEP_TIME
value: "5"
lint:
commitStatus: awsbuild/linting-slow
environmentVariables:
- name: SLEEP_TIME
value: "60"
unit-tests:
commitStatus: awsbuild/unit-tests
timeoutInMinutes: 5
integration-tests:
dependsOn:
- unit-tests
commitStatus: awsbuild/integration-tests
image: 'aws/codebuild/docker:17.09.0'
privilegedMode: true
2 changes: 1 addition & 1 deletion .gitignore/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/.idea
/somechange5
/somechange7
18 changes: 14 additions & 4 deletions buildspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,26 @@ phases:
install:
commands:
- echo install
- sleep $SLEEP_TIME
- ls /root/.npm || true
- npm install --cache-min=9999
- ls /root/.npm || true
pre_build:
commands:
- echo pre_build
- mkdir artifacts
build:
commands:
- echo build
- echo Foobar1 > builda.dat
- echo Foobar2 > artifacts/buildb.dat
- echo Foobar3 > artifacts/buildc.dat
post_build:
commands:
- echo post_build
#artifacts:
# files: '**/*'
# base-directory: artifacts
cache:
paths:
- '/root/.npm/**/*'
- 'node_modules/**/*'
artifacts:
files: '**/*'
base-directory: artifacts
Loading