feat(loader): finish implementing recursive load of non system libs #23
This file contains hidden or 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
| name: tests | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| tests: | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies (macOS) | |
| run: | | |
| brew update | |
| brew install coreutils | |
| - name: Build dynld | |
| working-directory: tools/launcher | |
| run: | | |
| make | |
| - name: Run tester.sh | |
| working-directory: test | |
| run: | | |
| mv ../tools/launcher/run . | |
| chmod +x run.sh | |
| chmod +x run | |
| ./run.sh |