Skip to content

Commit

Permalink
output path
Browse files Browse the repository at this point in the history
  • Loading branch information
gauteh committed May 24, 2024
1 parent 08884f4 commit 788616a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- name: Install dependencies and arduino compiler cli
run: |
sudo apt-get update && apt-get install -y curl git build-essential ffmpeg arduino-mk && apt-get clean
# sudo apt-get update && apt-get install -y curl git build-essential ffmpeg arduino-mk && apt-get clean
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=/usr/local/bin sh
arduino-cli config init
arduino-cli config add board_manager.additional_urls https://raw.githubusercontent.com/sparkfun/Arduino_Apollo3/main/package_sparkfun_apollo3_index.json
Expand Down Expand Up @@ -52,9 +52,9 @@ jobs:
run: |
cd src
mv tracker.ino src.ino
arduino-cli compile -v -b SparkFun:apollo3:artemis .
arduino-cli compile --build-path build -e --output-path build -v -b SparkFun:apollo3:artemis .
- uses: actions/upload-artifact@v4
with:
name: tracker-fw
path: build
path: src/build
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ ADD src .
# RUN mv tracker.ino src.ino

# The main ino file must have the same name as the folder.
RUN arduino-cli compile -v -b SparkFun:apollo3:artemis .
# RUN arduino-cli compile -v -b SparkFun:apollo3:artemis .

0 comments on commit 788616a

Please sign in to comment.