Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
buildstream
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
BuildStream
buildstream
Commits
605bff3a
You need to sign in or sign up before continuing.
Commit
605bff3a
authored
6 years ago
by
Jim MacArthur
Browse files
Options
Downloads
Patches
Plain Diff
Directory API: add mark_changed
parent
93bd3086
No related branches found
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
buildstream/storage/_filebaseddirectory.py
+4
-0
4 additions, 0 deletions
buildstream/storage/_filebaseddirectory.py
buildstream/storage/directory.py
+8
-0
8 additions, 0 deletions
buildstream/storage/directory.py
with
12 additions
and
0 deletions
buildstream/storage/_filebaseddirectory.py
+
4
−
0
View file @
605bff3a
...
...
@@ -121,8 +121,12 @@ class FileBasedDirectory(Directory):
for
f
in
import_result
.
files_written
:
os
.
utime
(
os
.
path
.
join
(
self
.
external_directory
,
f
),
times
=
(
cur_time
,
cur_time
))
self
.
mark_changed
()
return
import_result
def
mark_changed
(
self
):
self
.
_directory_read
=
False
def
set_deterministic_mtime
(
self
):
_set_deterministic_mtime
(
self
.
external_directory
)
...
...
This diff is collapsed.
Click to expand it.
buildstream/storage/directory.py
+
8
−
0
View file @
605bff3a
...
...
@@ -124,6 +124,14 @@ class Directory():
"""
raise
NotImplementedError
()
def
mark_changed
(
self
):
"""
Mark this directory as having been changed outside this API. This
normally can only happen by calling the Sandbox
'
s `run`
method.
"""
raise
NotImplementedError
()
# Convenience functions
def
is_empty
(
self
):
"""
Return true if this directory has no files, subdirectories or links in it.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment