From e247a29b02ecef9b521c3635b0460a04aca2eb32 Mon Sep 17 00:00:00 2001 From: Michael Tautschnig Date: Sat, 11 Aug 2018 09:26:53 +0000 Subject: [PATCH] CodeBuild: Remove empty artifact stanza It seems that CodeBuild has become more picky about this, making builds fail when the list of artifacts resolves to an empty list. --- buildspec-windows.yml | 3 --- buildspec.yml | 2 -- 2 files changed, 5 deletions(-) diff --git a/buildspec-windows.yml b/buildspec-windows.yml index 18ea6f69e35..345d61cedd6 100644 --- a/buildspec-windows.yml +++ b/buildspec-windows.yml @@ -80,9 +80,6 @@ phases: $env:Path = "C:\tools\cygwin\bin;$env:Path" cmd /c 'call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64 && bash -c "make -C jbmc/unit test BUILD_ENV=MSVC" ' -artifacts: - files: - cache: paths: - 'c:\clcache\**\*' diff --git a/buildspec.yml b/buildspec.yml index 2872198b604..c76d406eafb 100644 --- a/buildspec.yml +++ b/buildspec.yml @@ -27,8 +27,6 @@ phases: - make -C jbmc/unit test - make -C jbmc/regression test - echo Build completed on `date` -artifacts: - files: cache: paths: - '/var/cache/apt/**/*'