• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

crossbeamパッケージ


Commit MetaInfo

Révision7b3892d9997d78065def53e825f9d9e1d01d104b (tree)
l'heure2020-04-09 02:07:15
Auteurdyknon <dyknon@user...>
Commiterdyknon

Message de Log

execute crate tests in build proc

Change Summary

Modification

--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
1+rust-crossbeam (0.7.3+git200222-2+dyknon2) unstable; urgency=medium
2+
3+ * execute crate tests in build proc
4+
5+ -- dyknon <dyknon@users.osdn.me> Thu, 09 Apr 2020 01:31:24 +0900
6+
17 rust-crossbeam (0.7.3+git200222-2+dyknon1) unstable; urgency=medium
28
39 * new upstream versions
--- a/debian/rules
+++ b/debian/rules
@@ -21,10 +21,8 @@ execute_after_dh_clean:
2121 debian/cargo_registry debian/cargo_home
2222
2323 override_dh_autoreconf:
24-override_dh_auto_test:
2524 override_dh_auto_configure:
2625
27-
2826 override_dh_auto_build:
2927 set -e; \
3028 ./debian/deb-crateinfo.pl crates | while read name; do \
@@ -45,6 +43,15 @@ override_dh_auto_build:
4543 --manifest-path "$$(./debian/deb-crateinfo.pl manifest-path $$name)"; \
4644 done
4745
46+override_dh_auto_test:
47+ set -e; \
48+ ./debian/deb-crateinfo.pl crates | while read name; do \
49+ version="$$(./debian/deb-crateinfo.pl version "$$name")"; \
50+ cd debian/target/package/"$$name-$$version"; \
51+ $(DEB_CARGO) test; \
52+ cd -; \
53+ done
54+
4855 override_dh_auto_install:
4956 set -e; \
5057 ./debian/deb-crateinfo.pl crates | while read name; do \