Skip to content

Commit

Permalink
github/ci: moving to build directory in steps
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaeddert committed Dec 21, 2024
1 parent 3fceb77 commit 0210bd2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,14 @@ jobs:
make -j2
- name: check
run: ./xautotest -v -o autotest.json
run: |
cd build
./xautotest -v -o autotest.json
- name: make install
run: sudo make install
run: |
cd build
sudo make install
#- name: ldconfig (Linux)
# if: runner.os == 'Linux'
Expand Down

0 comments on commit 0210bd2

Please sign in to comment.