@@ -85,13 +85,13 @@ jobs:
85
85
uses : actions/upload-artifact@v3
86
86
with :
87
87
name : veracrypt-gui-debs
88
- path : /tmp/VeraCrypt_Packaging/GUI/Packaging/veracrypt-*.{ deb,sha256}
88
+ path : /tmp/VeraCrypt_Packaging/GUI/Packaging/veracrypt-*.deb
89
89
90
90
- name : Upload Console .deb packages
91
91
uses : actions/upload-artifact@v3
92
92
with :
93
93
name : veracrypt-console-debs
94
- path : /tmp/VeraCrypt_Packaging/Console/Packaging/veracrypt-console-*.{ deb,sha256}
94
+ path : /tmp/VeraCrypt_Packaging/Console/Packaging/veracrypt-console-*.deb
95
95
96
96
- name : Install and test VeraCrypt GUI .deb packages
97
97
run : |
@@ -102,26 +102,26 @@ jobs:
102
102
sudo veracrypt --text --non-interactive Tests/test.streebog.hc --hash streebog --slot 3 --password test --mount-options=ro
103
103
sudo veracrypt --text --non-interactive Tests/test.whirlpool.hc --hash whirlpool --slot 4 --password test --mount-options=ro
104
104
sudo veracrypt --text --list
105
- echo -n "dummy " > /tmp/expected_content.txt
106
- if cmp -s /media/veracrypt1/dummy .txt /tmp/expected_content.txt; then
105
+ echo -n "Dummy " > /tmp/expected_content.txt
106
+ if cmp -s /media/veracrypt1/Dummy .txt /tmp/expected_content.txt; then
107
107
echo "Content of test.sha256.hc is valid."
108
108
else
109
109
echo "Content of test.sha256.hc is invalid!"
110
110
exit 1
111
111
fi
112
- if cmp -s /media/veracrypt2/dummy .txt /tmp/expected_content.txt; then
112
+ if cmp -s /media/veracrypt2/Dummy .txt /tmp/expected_content.txt; then
113
113
echo "Content of test.sha512.hc is valid."
114
114
else
115
115
echo "Content of test.sha512.hc is invalid!"
116
116
exit 1
117
117
fi
118
- if cmp -s /media/veracrypt3/dummy .txt /tmp/expected_content.txt; then
118
+ if cmp -s /media/veracrypt3/Dummy .txt /tmp/expected_content.txt; then
119
119
echo "Content of test.streebog.hc is valid."
120
120
else
121
121
echo "Content of test.streebog.hc is invalid!"
122
122
exit 1
123
123
fi
124
- if cmp -s /media/veracrypt4/dummy .txt /tmp/expected_content.txt; then
124
+ if cmp -s /media/veracrypt4/Dummy .txt /tmp/expected_content.txt; then
125
125
echo "Content of test.whirlpool.hc is valid."
126
126
else
127
127
echo "Content of test.whirlpool.hc is invalid!"
0 commit comments