dapp 0.19.7 → 0.19.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/dapp/dimg/build/stage/base.rb +4 -1
- data/lib/dapp/dimg/build/stage/before_install.rb +4 -1
- data/lib/dapp/dimg/build/stage/before_install_artifact.rb +4 -0
- data/lib/dapp/dimg/build/stage/from.rb +4 -0
- data/lib/dapp/dimg/build/stage/ga_base.rb +0 -7
- data/lib/dapp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c60302fbe9627e8d2ec24204734a8f9343c99bdf1f2c4bc8887a403f4157599f
|
|
4
|
+
data.tar.gz: dfaba1a83620cb4acecacb35f7af7d70044754c42557ca64c876eb9ccb73e436
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 650bc33a1792f3a308b86324d24fb5ac6e6fe8c20550525bab51304c9fe82fe31766cd6e87aa320cf355a3e89bf6ed09d97b79b5bff40ecb36ae247058795c56
|
|
7
|
+
data.tar.gz: 6008c7ded3b8f91e661fa647d94f1a80697a37b55d33182d616ef432695971bcbdf745bc84de95ec22e7dd4f3fd0090e2bcf6e160a0486f7eaac51bc09951dc0
|
|
@@ -272,7 +272,10 @@ module Dapp
|
|
|
272
272
|
end
|
|
273
273
|
|
|
274
274
|
def image_should_be_untagged_condition
|
|
275
|
-
false
|
|
275
|
+
return false unless image.tagged?
|
|
276
|
+
dimg.git_artifacts.any? do |git_artifact|
|
|
277
|
+
!git_artifact.repo.commit_exists? layer_commit(git_artifact)
|
|
278
|
+
end
|
|
276
279
|
end
|
|
277
280
|
|
|
278
281
|
def should_be_not_present?
|
|
@@ -15,6 +15,7 @@ module Dapp
|
|
|
15
15
|
def context
|
|
16
16
|
[builder_checksum]
|
|
17
17
|
end
|
|
18
|
+
alias dependencies context
|
|
18
19
|
|
|
19
20
|
def builder_checksum
|
|
20
21
|
dimg.builder.before_install_checksum
|
|
@@ -26,7 +27,9 @@ module Dapp
|
|
|
26
27
|
end
|
|
27
28
|
end
|
|
28
29
|
|
|
29
|
-
|
|
30
|
+
def image_should_be_untagged_condition
|
|
31
|
+
false
|
|
32
|
+
end
|
|
30
33
|
end # BeforeInstall
|
|
31
34
|
end # Stage
|
|
32
35
|
end # Build
|
|
@@ -24,13 +24,6 @@ module Dapp
|
|
|
24
24
|
true
|
|
25
25
|
end
|
|
26
26
|
|
|
27
|
-
def image_should_be_untagged_condition
|
|
28
|
-
return false unless image.tagged?
|
|
29
|
-
dimg.git_artifacts.any? do |git_artifact|
|
|
30
|
-
!git_artifact.repo.commit_exists? layer_commit(git_artifact)
|
|
31
|
-
end
|
|
32
|
-
end
|
|
33
|
-
|
|
34
27
|
protected
|
|
35
28
|
|
|
36
29
|
def should_not_be_detailed?
|
data/lib/dapp/version.rb
CHANGED