[nop] Simplify dir structure

This commit is contained in:
Peter Taoussanis 2025-01-14 10:34:47 +01:00
parent db26a5d683
commit f984cdd213
49 changed files with 6 additions and 7 deletions

View file

@ -26,8 +26,8 @@ jobs:
- uses: actions/cache@v4 - uses: actions/cache@v4
with: with:
path: ~/.m2/repository path: ~/.m2/repository
key: deps-${{ hashFiles('projects/main/project.clj') }} key: deps-${{ hashFiles('main/project.clj') }}
restore-keys: deps- restore-keys: deps-
- run: bb graal-tests - run: bb graal-tests
working-directory: projects/main working-directory: main

View file

@ -24,8 +24,8 @@ jobs:
id: cache-deps id: cache-deps
with: with:
path: ~/.m2/repository path: ~/.m2/repository
key: deps-${{ hashFiles('projects/main/project.clj') }} key: deps-${{ hashFiles('main/project.clj') }}
restore-keys: deps- restore-keys: deps-
- run: lein test-all - run: lein test-all
working-directory: projects/main working-directory: main

View file

@ -1,6 +1,5 @@
#!/bin/bash #!/bin/bash
cd projects/main; lein install; cd ../..; cd main; lein install; cd ..;
cd projects/api; lein install; cd ../..; cd slf4j; lein install; cd ..;
cd projects/slf4j; lein install; cd ../..;