Skip to content

Commit ae2797d

Browse files
🩹 [Patch]: Remove unused DYLD_PRINT_LIBRARIES environment variable (#80)
## Description This pull request includes changes to two GitHub workflow files, specifically removing an environment variable setup for testing modules. The most important changes are: GitHub workflow updates: * [`.github/workflows/CI.yml`](diffhunk://#diff-3ab46ee209a127470fce3c2cf106b1a1dbadbb929a4b5b13656a4bc4ce19c0b8L318-L319): Removed the `env` section that set `DYLD_PRINT_LIBRARIES` to `${{ inputs.Debug }}` in the `Test built module` job. * [`.github/workflows/workflow.yml`](diffhunk://#diff-126bf89616b7daa3d14ebc882ad18666aaf1c3dae888c4ba306a66ec80758bc1L325-L326): Removed the `env` section that set `DYLD_PRINT_LIBRARIES` to `${{ inputs.Debug }}` in the `Test built module` job. ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [ ] 🪲 [Fix] - [x] 🩹 [Patch] - [ ] ⚠️ [Security fix] - [ ] 🚀 [Feature] - [ ] 🌟 [Breaking change] ## Checklist <!-- Use the check-boxes [x] on the options that are relevant. --> - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas
1 parent 6cf0b55 commit ae2797d

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

Diff for: .github/workflows/CI.yml

-2
Original file line numberDiff line numberDiff line change
@@ -315,8 +315,6 @@ jobs:
315315
- name: Test built module
316316
id: test
317317
uses: PSModule/Test-PSModule@v2
318-
env:
319-
DYLD_PRINT_LIBRARIES: ${{ inputs.Debug }}
320318
continue-on-error: true
321319
with:
322320
Name: ${{ inputs.Name }}

Diff for: .github/workflows/workflow.yml

-2
Original file line numberDiff line numberDiff line change
@@ -322,8 +322,6 @@ jobs:
322322
- name: Test built module
323323
id: test
324324
uses: PSModule/Test-PSModule@v2
325-
env:
326-
DYLD_PRINT_LIBRARIES: ${{ inputs.Debug }}
327325
continue-on-error: true
328326
with:
329327
Name: ${{ inputs.Name }}

0 commit comments

Comments
 (0)