Skip to content

Commit

Permalink
build with overclocking
Browse files Browse the repository at this point in the history
release multiple overclocked files
  • Loading branch information
xrip committed Oct 6, 2023
1 parent dc4fa4c commit 845f30a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build-release-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,21 @@ jobs:
cd pico-sdk/ && \
git submodule update --init
- name: Build the project
- name: Build the basic version
run: |
export PICO_SDK_PATH=$HOME/pico-sdk && \
mkdir build && cd build && \
cmake .. && make && \
cmake -DOVERCLOCKING=288 .. && make && \
cmake .. && make
- name: Build the overclocked versions
run: cmake -DOVERCLOCKING=288 .. && make && \
cmake -DOVERCLOCKING=300 .. && make && \
cmake -DOVERCLOCKING=312 .. && make && \
cmake -DOVERCLOCKING=333 .. && make && \
cmake -DOVERCLOCKING=366 .. && make && \
cmake -DOVERCLOCKING=396 .. && make && \
cmake -DOVERCLOCKING=412 .. && make
cmake -DOVERCLOCKING=412 .. && make


- name: Create release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 845f30a

Please sign in to comment.