Skip to content

Commit

Permalink
CI: bypass make
Browse files Browse the repository at this point in the history
  • Loading branch information
XPhyro committed Feb 8, 2024
1 parent f3d0db1 commit a58a9be
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/analyse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
SHELL_VERBOSE: 1
- name: analyse
run: |
make analyse
cd src/ || exit 1
./.make analyse
env:
SHELL_VERBOSE: 1
14 changes: 9 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,22 +30,26 @@ jobs:
SHELL_VERBOSE: 1
- name: build
run: |
make install
make uninstall
cd src/ || exit 1
./.make install
./.make uninstall
env:
SHELL_VERBOSE: 1
- name: sudo-build
run: |
sudo make install
cd src/ || exit 1
sudo ./.make install
env:
SHELL_VERBOSE: 1
- name: test
run: |
make test
cd src/ || exit 1
./.make test
env:
SHELL_VERBOSE: 1
- name: sudo-test
run: |
sudo make test
cd src/ || exit 1
sudo ./.make test
env:
SHELL_VERBOSE: 1
3 changes: 2 additions & 1 deletion .github/workflows/spell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
sudo apt-get -y install codespell
- name: spell
run: |
make spell
cd src/ || exit 1
./.make spell
env:
SHELL_VERBOSE: 1
3 changes: 2 additions & 1 deletion .github/workflows/stats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
- uses: actions/checkout@v3
- name: stats
run: |
make stats
cd src/ || exit 1
./.make stats
env:
SHELL_VERBOSE: 1

0 comments on commit a58a9be

Please sign in to comment.