We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaf1b3c commit cd51467Copy full SHA for cd51467
.github/actions/build-native-binary/action.yaml
@@ -92,9 +92,6 @@ runs:
92
if: ${{ inputs.arch == 'amd64' }}
93
run: |
94
cd dist_${{ inputs.arch }}/utest
95
- ls -la
96
- chmod +x TestSelfUpdateAgent
97
- uname -a
98
file TestSelfUpdateAgent
99
./TestSelfUpdateAgent > ../../unit_tests_report_${{ inputs.arch }}.txt
100
shell: bash
@@ -107,11 +104,13 @@ runs:
107
104
distro: ubuntu_latest
108
105
dockerRunArgs: |
109
106
--volume "${PWD}:/sua"
+ --net=host
110
shell: /bin/sh
+ install: |
+ apt-get -y update
111
+ apt-get -y install mosquitto-clients
112
113
cd /sua/dist_arm64/utest
- ls -la ../lib
114
- ldd TestSelfUpdateAgent
115
LD_LIBRARY_PATH=../lib ./TestSelfUpdateAgent > ../../unit_tests_report_arm64.txt
116
117
- name: Collect code-coverage for amd64
0 commit comments