Skip to content

Commit

Permalink
move binaries; use updated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dromer committed Feb 10, 2024
1 parent f6f4497 commit ffa035b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 17 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.9
- run: python -m pip install -U pip
Expand All @@ -47,11 +47,11 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.9
- run: python -m pip install -U pip
Expand All @@ -76,11 +76,11 @@ jobs:
target: [macos-intel, macos-universal]
runs-on: macos-11
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.9
- run: python -m pip install -U pip
Expand All @@ -101,7 +101,7 @@ jobs:
# modduo:
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# with:
# submodules: recursive
# - name: Set up cache
Expand All @@ -124,7 +124,7 @@ jobs:
# $(pwd)/deps/mod-plugin-builder/bootstrap.sh modduo-static minimal && $(pwd)/deps/mod-plugin-builder/.clean-install.sh modduo-static

# - name: Set up Python
# uses: actions/setup-python@v4
# uses: actions/setup-python@v5
# with:
# python-version: 3.9
# - run: python -m pip install -U pip
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
# modduox:
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# with:
# submodules: recursive
# - name: Set up cache
Expand All @@ -196,7 +196,7 @@ jobs:
# $(pwd)/deps/mod-plugin-builder/bootstrap.sh modduox-static minimal && $(pwd)/deps/mod-plugin-builder/.clean-install.sh modduox-static

# - name: Set up Python
# uses: actions/setup-python@v4
# uses: actions/setup-python@v5
# with:
# python-version: 3.9
# - run: python -m pip install -U pip
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
# moddwarf:
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v3
# - uses: actions/checkout@v4
# with:
# submodules: recursive
# - name: Set up cache
Expand All @@ -268,7 +268,7 @@ jobs:
# $(pwd)/deps/mod-plugin-builder/bootstrap.sh moddwarf minimal && $(pwd)/deps/mod-plugin-builder/.clean-install.sh moddwarf

# - name: Set up Python
# uses: actions/setup-python@v4
# uses: actions/setup-python@v5
# with:
# python-version: 3.9
# - run: python -m pip install -U pip
Expand Down
7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,11 @@ features: hvcc

plugins: hvcc
$(foreach var, $(PLUGINS), make -C $(var)/ $(MAKECMDGOALS);)

hvcc:
$(foreach var, $(PLUGINS), hvcc dpf_$(var).pd -n $(var) -m dpf_$(var).json -o $(var) -g dpf -p examples -p examples/heavylib;)

binmove:
mkdir bin
$(foreach var, $(PLUGINS), mv $(var)/bin/* bin/;)

hvcc:
$(foreach var, $(PLUGINS), hvcc dpf_$(var).pd -n $(var) -m dpf_$(var).json -o $(var) -g dpf -p examples -p examples/heavylib;)

modduo: all
modduox: all
Expand Down

0 comments on commit ffa035b

Please sign in to comment.