add:little flash支持lock #3173
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: air105 | |
on: | |
push: | |
paths: | |
- '.github/workflows/air105.yml' | |
- 'lua/**' | |
- 'luat/**' | |
- 'components/**' | |
- 'bsp/air105/**' | |
workflow_dispatch: | |
repository_dispatch: | |
types: | |
- webhook-105-action | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: prepare software | |
run: | | |
sudo apt-get update | |
sudo apt-get install git gcc-multilib libc6 libgcc1 libstdc++5 libstdc++6 p7zip-full -y | |
sudo apt-get install libncurses5-dev -y | |
sudo add-apt-repository ppa:xmake-io/xmake -y | |
sudo apt-get update | |
sudo apt-get install xmake -y | |
- name: clone 105 | |
run: | | |
sudo sh -c "curl https://raw.githubusercontent.com/kadwanev/retry/master/retry -o /usr/local/bin/retry && chmod +x /usr/local/bin/retry" | |
cd .. | |
retry 'git clone --branch=master https://github.com/openLuat/luatos-soc-air105 air105' | |
cd air105 | |
git config --global credential.helper store | |
git config --global user.email 'bot@luatos.com' | |
git config --global user.name 'robot' | |
git remote set-url origin https://gitee.com/openLuat/luatos-soc-air105 | |
retry 'git pull origin' | |
- name: make | |
run: | | |
cd ../air105 | |
mkdir /home/runner/toolchains | |
wget -q https://github.com/openLuat/LuatOS/releases/download/v0.0.1/gcc-arm-none-eabi-10.3-2021.10-x86_64-linux.tar.bz2 -O /home/runner/toolchains/gcc-arm-none-eabi-10.3-2021.10-x86_64-linux.tar.bz2 | |
xmake g --pkg_searchdirs=/home/runner/toolchains | |
xmake -y | |
mkdir ../LuatOS/luatosfw | |
mv build/out/*.soc ../LuatOS/luatosfw | |
- name: Upload artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: air105 | |
path: luatosfw | |
- name: report if failure | |
if: always() | |
env: | |
STATUS: ${{ job.status }} | |
MQTTADDR: ${{ secrets.MQTTADDR }} | |
MQTTPORT: ${{ secrets.MQTTPORT }} | |
MQTTTOPIC: ${{ secrets.MQTTTOPIC }} | |
DD_APPKEY: ${{ secrets.DD_APPKEY }} | |
DD_APPSECRET: ${{ secrets.DD_APPSECRET }} | |
DD_NOTIFY_LIST: ${{ secrets.DD_NOTIFY_LIST }} | |
DD_API_TOKEN: ${{ secrets.DD_API_TOKEN }} | |
DD_API_SEND: ${{ secrets.DD_API_SEND }} | |
run: | | |
sudo pip3 install paho_mqtt gitpython requests | |
cd tools | |
if [ "$STATUS" = "failure" ];then python3 ciNotify.py $MQTTADDR $MQTTPORT $MQTTTOPIC "https://github.com/openLuat/LuatOS/actions/runs/$GITHUB_RUN_ID" "air105" "$DD_APPKEY" "$DD_APPSECRET" "$DD_NOTIFY_LIST" "$DD_API_TOKEN" "$DD_API_SEND"; fi |