Skip to content

Commit

Permalink
workflows: updated to use new make targets
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Pospesel committed Feb 18, 2024
1 parent 60be767 commit 12b39e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
- name: Build Debug
run: |
make install-debug
make install-examples-debug
- name: Archive Debug
uses: actions/upload-artifact@v3
with:
Expand All @@ -27,7 +26,6 @@ jobs:
- name: Build Release
run: |
make install-release
make install-examples-release
- name: Archive Release
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -67,7 +65,6 @@ jobs:
# manually add java bins to PATH >:[
export PATH=$(cygpath -u ${JAVA_HOME})/bin:$PATH
make install-debug
make install-examples-debug
- name: Archive Debug
uses: actions/upload-artifact@v3
with:
Expand All @@ -79,7 +76,6 @@ jobs:
# manually add java bins to PATH >:[
export PATH=$(cygpath -u ${JAVA_HOME})/bin:$PATH
make install-release
make install-examples-release
- name: Archive Release
uses: actions/upload-artifact@v3
with:
Expand All @@ -100,7 +96,6 @@ jobs:
- name: Build Debug
run: |
make install-debug
make install-examples-debug
- name: Archive Debug
uses: actions/upload-artifact@v3
with:
Expand All @@ -110,7 +105,6 @@ jobs:
- name: Build Release
run: |
make install-release
make install-examples-release
- name: Archive Release
uses: actions/upload-artifact@v3
with:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y libboost-all-dev tor libncurses-dev
sudo apt-get install -y libboost-all-dev tor
- name: Test Debug
run: |
make test-debug
Expand Down Expand Up @@ -43,7 +43,6 @@ jobs:
mingw-w64-clang-x86_64-rust
mingw-w64-clang-x86_64-boost
mingw-w64-clang-x86_64-tor
mingw-w64-clang-x86_64-ncurses
- name: Test Debug
run: |
make test-debug
Expand All @@ -60,7 +59,7 @@ jobs:
submodules: true
- name: Install Dependencies
run: |
brew install boost tor ncurses
brew install boost tor
- name: Test Debug
run: |
make test-debug
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pages.yml → .github/workflows/website.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: pages
name: website

on:
push:
Expand All @@ -21,7 +21,7 @@ jobs:
sudo apt-get install -y doxygen pandoc plantuml tidy ruby-mustache graphviz
- name: Build Pages
run: |
make install-pages-rel-with-deb-info
make website-rel-with-deb-info
- name: Deploy to Github Pages
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down

0 comments on commit 12b39e6

Please sign in to comment.