postpone ls

fixes-turtlebasket
Mattia Montanari 2023-02-14 13:49:36 +01:00
parent 64f46a4ef0
commit 48a95f60eb
1 changed files with 3 additions and 3 deletions

View File

@ -13,11 +13,11 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}." - run: echo "🍏 This job's status is ${{ job.status }}."
- run: cmake -E make_directory build - run: cmake -E make_directory build
- run: cmake -E chdir build cmake -DCMAKE_BUILD_TYPE=Release .. - run: cmake -E chdir build cmake -DCMAKE_BUILD_TYPE=Release ..
- run: cmake --build build - run: cmake --build build
- run: cmake -E chdir build/examples/c/ ./example_lib_opengjk_ce - run: cmake -E chdir build/examples/c/ ./example_lib_opengjk_ce
- name: List files in the repository
run: |
ls ${{ github.workspace }}