File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 52
52
ansible --version
53
53
cargo --version
54
54
55
+ - name : Set SSH key permissions
56
+ run : |
57
+ # SSH requires private key files to have restrictive permissions (0600)
58
+ # Git checkout doesn't preserve file permissions, so we need to set them manually
59
+ chmod 600 fixtures/testing_rsa
60
+ ls -la fixtures/testing_rsa
61
+
55
62
- name : Build E2E configuration tests binary
56
63
run : |
57
64
cargo build --bin e2e-config-tests --release
Original file line number Diff line number Diff line change 51
51
ansible --version
52
52
cargo --version
53
53
54
+ - name : Set SSH key permissions
55
+ run : |
56
+ # SSH requires private key files to have restrictive permissions (0600)
57
+ # Git checkout doesn't preserve file permissions, so we need to set them manually
58
+ chmod 600 fixtures/testing_rsa
59
+ ls -la fixtures/testing_rsa
60
+
54
61
- name : Build E2E tests binary
55
62
run : |
56
63
cargo build --bin e2e-tests --release
You can’t perform that action at this time.
0 commit comments