Skip to content

Commit

Permalink
Reverse contains args
Browse files Browse the repository at this point in the history
  • Loading branch information
OoLunar committed Mar 22, 2024
1 parent a5c353a commit 9d8c959
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/sodium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,21 +122,21 @@ jobs:
version: 0.11.0
cache: false
- name: Set up MSBuild
if: contains('win', matrix.config.rid)
if: contains(matrix.config.rid, 'win')
uses: microsoft/setup-msbuild@v2
with:
msbuild-architecture: ${{ matrix.config.arch }}
- name: Set up JDK 17
if: contains('android', matrix.config.rid)
if: contains(matrix.config.rid, 'android')
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Android SDK
if: contains('android', matrix.config.rid)
if: contains(matrix.config.rid, 'android')
uses: android-actions/setup-android@v3
- name: Workaround for iOS
if: contains('ios', matrix.config.rid)
if: contains(matrix.config.rid, 'ios')
run: |
SDK_IPHONE_PATH=$(xcrun --show-sdk-path --sdk iphoneos)
zig libc > libc.txt
Expand Down

0 comments on commit 9d8c959

Please sign in to comment.