-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
COMP: Attempt to fix restoration of cache in upload job
This commit is an attempt to fix errors like the following: ``` [...] Found a cache from build 718 at applauncher-build-934889f29d7d1ea60adf7b6d8844028749872863 Size: 103 MiB Cached paths: * /usr/src/AppLauncher-build Downloading cache archive... Validating cache... Download duration for cache file /tmp/cache1192561374: 2.771237192s Unarchiving cache... Skipping writing "usr/src/AppLauncher-build/" - mkdir /usr/src/AppLauncher-build: permission denied Skipping writing "usr/src/AppLauncher-build/Base/" - mkdir /usr/src/AppLauncher-build: permission denied [...] /bin/bash: line 6: cd: /usr/src/AppLauncher: No such file or directory ```
- Loading branch information
Showing
3 changed files
with
18 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,13 @@ FROM commontk/qt-static:4.8.6-centos-5.5 | |
MAINTAINER CommonTK Community <[email protected]> | ||
# Build and package the CTK AppLauncher | ||
|
||
WORKDIR /usr/src | ||
WORKDIR /home/circleci/project | ||
|
||
RUN git clone https://github.com/commontk/AppLauncher.git | ||
VOLUME /usr/src/AppLauncher | ||
VOLUME /home/circleci/project/AppLauncher | ||
|
||
RUN mkdir /usr/src/AppLauncher-build | ||
WORKDIR /usr/src/AppLauncher-build | ||
RUN mkdir /home/circleci/project/AppLauncher-build | ||
WORKDIR /home/circleci/project/AppLauncher-build | ||
ADD docker-build-package.sh /usr/bin/build-package.sh | ||
RUN /usr/bin/build-package.sh | ||
VOLUME /usr/src/AppLauncher-build | ||
VOLUME /home/circleci/project/AppLauncher-build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters