We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08257a5 commit a6ec410Copy full SHA for a6ec410
.github/actions/install-swift/action.yml
@@ -7,7 +7,7 @@ runs:
7
- name: Install apt dependencies
8
shell: bash
9
run: |
10
- SUDO=$([[ $EUID -ne 0 ]] && echo sudo)
+ SUDO=$(if [[ $EUID -ne 0 ]]; then echo sudo; fi)
11
$SUDO apt-get -qq update
12
$SUDO apt-get -qq -y install curl gpg binutils git unzip gnupg2 \
13
libc6-dev libcurl4-openssl-dev libedit2 libgcc-13-dev libpython3-dev \
.github/workflows/build-esp.yml
@@ -17,7 +17,7 @@ jobs:
17
strategy:
18
fail-fast: false
19
matrix:
20
- example: [esp32-led-blink-sdk, esp32-led-strip-sdk]
+ example: [esp32-led-blink-sdk] # esp32-led-strip-sdk
21
22
steps:
23
- name: Checkout repo
0 commit comments