forked from DragonHPC/dragon
-
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.
- Loading branch information
1 parent
d5d5f12
commit 97b68f2
Showing
1 changed file
with
4 additions
and
3 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 |
---|---|---|
|
@@ -57,9 +57,10 @@ jobs: | |
docker exec my_container mkdir dragon | ||
docker cp ./ my_container:/dragon | ||
docker exec my_container ls | ||
docker exec my_container cd dragon && source hack/clean_build && cd doc && make | ||
docker exec my_container cd dragon && ls doc && ls src | ||
docker cp my_container/doc ./doc | ||
docker exec -i my_container bash -c "cd dragon && source hack/clean_build && cd doc && make" | ||
docker exec -i my_container bash -c "cd dragon && ls doc && ls src" | ||
docker cp my_container/doc . | ||
ls ./doc | ||
# - name: Build with Doxygen | ||
# uses: mattnotmitt/[email protected] | ||
|