We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05b654b commit 9fa87a6Copy full SHA for 9fa87a6
1 file changed
.github/workflows/ubuntu.yml
@@ -157,6 +157,17 @@ jobs:
157
continue-on-error: true
158
timeout-minutes: 3
159
160
+ # A temporary workaround: Skip user ground id test
161
+ # There is a mismatch between the group IDs of "id -g" and C function
162
+ # getpwuid(uid_t uid) pw_gid.
163
+ # https://github.com/IBM/actionspz/issues/31
164
+ - name: Skip user group id test
165
+ run: |
166
+ sed -i.orig '/^ it "returns user group id" do/a\ skip' \
167
+ ../src/spec/ruby/library/etc/struct_passwd_spec.rb
168
+ diff -u ../src/spec/ruby/library/etc/struct_passwd_spec.rb{.orig,} || :
169
+ if: ${{ endsWith(matrix.os, 'ppc64le') || endsWith(matrix.os, 's390x') }}
170
+
171
- name: make ${{ matrix.test_task }}
172
run: |
173
test -n "${LAUNCHABLE_STDOUT}" && exec 1> >(tee "${LAUNCHABLE_STDOUT}")
0 commit comments