Skip to content

Commit a76e4b9

Browse files
committed
Don't try to test objc2_exception and objc2_block on GNUStep for now
1 parent bf75ec3 commit a76e4b9

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,23 @@ jobs:
116116
echo "LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV
117117
echo "CPATH=/usr/local/include:$CPATH" >> $GITHUB_ENV
118118
119+
- name: Test GNUStep
120+
if: contains(matrix.platform.os, 'ubuntu')
121+
uses: actions-rs/cargo@v1
122+
with:
123+
command: test
124+
# Temporary fix
125+
args: --verbose --no-fail-fast --no-default-features --package objc2_sys --package objc2 --package objc2_encode --package objc2_foundation
126+
119127
- name: Test
128+
if: ${{ !contains(matrix.platform.os, 'ubuntu') }}
120129
uses: actions-rs/cargo@v1
121130
with:
122131
command: test
123132
args: --verbose --no-fail-fast --no-default-features
124133

125134
- name: Test with features
135+
if: ${{ !contains(matrix.platform.os, 'ubuntu') }}
126136
uses: actions-rs/cargo@v1
127137
with:
128138
command: test

0 commit comments

Comments
 (0)