Skip to content

Commit

Permalink
GHA test
Browse files Browse the repository at this point in the history
  • Loading branch information
vysocan committed Feb 17, 2024
1 parent 7ec5924 commit 8777856
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tools/before_install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/sh

set -ex

cd /tmp

wget https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack/releases/download/v9.2.1-1.1/xpack-arm-none-eabi-gcc-9.2.1-1.1-linux-x64.tar.gz
tar xzf xpack-arm-none-eabi-gcc-9.2.1-1.1-linux-x64.tar.gz
export PATH=/tmp/xpack-arm-none-eabi-gcc-9.2.1-1.1/bin:$PATH
arm-none-eabi-gcc --version

cd -
cd ../..

git clone https://github.com/vysocan/OHS_2-chibios.git chibios_stable-20.3.x
7 changes: 7 additions & 0 deletions tools/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh

set -ex

export PATH=/tmp/xpack-arm-none-eabi-gcc-9.2.1-1.1/bin:$PATH

make -j

0 comments on commit 8777856

Please sign in to comment.