Skip to content

Commit

Permalink
Fix build-ubuntu.yml workflow
Browse files Browse the repository at this point in the history
the issue was each run: command has its own context, so when we set cd directory from the previous
run:, we can't expect the index to still point at the directory we cd to previously in the current run:
now resolved by combining all in one run: command.
  • Loading branch information
baderouaich committed Sep 22, 2023
1 parent cd9548e commit f375b62
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ jobs:
make --version
ninja --version
- name: Generate ninja files
run: |
mkdir cmake-build-debug && cd cmake-build-debug
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Debug -DENABLE_TESTS=ON
- name: Export TESTS_BOT_TOKEN to env
run: export TESTS_BOT_TOKEN=${{ secrets.TESTS_BOT_TOKEN }}

Expand Down

0 comments on commit f375b62

Please sign in to comment.