forked from dylan-lang/deft
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Add test-submodules "make" target, don't -unify
Ran into trouble with unified exe not finding libunwind.so so I've reverted back to the non-unified build and install regime until we have a new release with housel's fix for libunwind (likely 2025.1).
- Loading branch information
Showing
2 changed files
with
34 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,12 +40,15 @@ jobs: | |
run: | | ||
mkdir -p ${DYLAN} | ||
make install | ||
ls -l ${DYLAN}/bin/ | ||
ldd ${DYLAN}/bin/deft | ||
- name: Exercise deft | ||
env: | ||
DYLAN_CATALOG: ext/pacman-catalog | ||
DYLAN: dylan-root | ||
run: | | ||
find ${DYLAN} -print | ||
exe="$(realpath ${DYLAN}/bin/deft)" | ||
export DYLAN_CATALOG="$(realpath ${DYLAN_CATALOG})" | ||
${exe} new library --force-package abc [email protected] | ||
|
@@ -55,3 +58,11 @@ jobs: | |
${exe} list | ||
${exe} build abc-test-suite | ||
_build/bin/abc-test-suite | ||
- name: Run test suite using submodules | ||
env: | ||
DYLAN_CATALOG: ext/pacman-catalog | ||
DYLAN: dylan-root | ||
run: | | ||
mkdir -p ${DYLAN} | ||
make test-submodules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters