Skip to content

Commit

Permalink
Merge pull request #5 from yamukha/main
Browse files Browse the repository at this point in the history
Fixed not running git workflow script
  • Loading branch information
akru authored Nov 8, 2023
2 parents aaa5ef5 + e237852 commit 3ea2876
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/datalog-tiny.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Datalog tiny
on:
push:
branches:
workflow_dispatch:
branches:
- master
- main

jobs:
esp8622:
Expand All @@ -11,13 +13,13 @@ jobs:
steps:
- name: Install arduino-cli for esp8622
run: |
apt-get install curl git -y
sudo apt-get install curl git -y
cd ~
mkdir arduino-init
cd arduino-init
curl -L -o arduino-cli.tar.bz2 https://downloads.arduino.cc/arduino-cli/arduino-cli-latest-linux64.tar.bz2
tar xjf arduino-cli.tar.bz2
mv arduino-cli /usr/bin/arduino-cli
sudo mv arduino-cli /usr/bin/arduino-cli
arduino-cli core update-index --config-file arduino-cli.yaml
ARDUINO_YAML=$(arduino-cli config init | awk '{ print $4 }')
echo board_manager: >> $ARDUINO_YAML
Expand Down Expand Up @@ -51,8 +53,8 @@ jobs:
git clone https://github.com/weidai11/cryptopp
cd cryptopp
make libcryptopp.a libcryptopp.so -j4
make install PREFIX=/usr/local -j4
ldconfig
sudo make install PREFIX=/usr/local -j4
sudo ldconfig
- name: Library Unit tests
run: |
Expand Down

0 comments on commit 3ea2876

Please sign in to comment.