Skip to content

Commit

Permalink
Test shell variables in bootstrap project
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzaponte committed Nov 10, 2024
1 parent ec9a55d commit 8164661
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,20 @@ jobs:
grep QT_QPA_PLATFORM_PLUGIN_PATH my-project-env
echo ===============================================
- name: Test variables set by bootstrap project
run: |
nix develop ~/work/my-project# -c env > my-project-env
libpath="CHANGEME_SNAKE_LIB_PATH"
echo ====== checking that ${libnane} exits ==================
[[ -n ${libpath} ]]
echo ========================================================
echo ====== grepping LD_LIBRARY_PATH for $libpath ===========
grep "$libpath" $LD_LIBRARY_PATH
echo ========================================================
echo ====== grepping PKG_CONFIG_PATH for $libpath ===========
grep "$libpath/pkgconfig" $LD_LIBRARY_PATH
echo ===============================================
- name: Check that mdbook ANCHORs have been stripped from bootstrapped project
run: |
nix profile install nixpkgs#ripgrep
Expand Down

0 comments on commit 8164661

Please sign in to comment.