Skip to content

Commit 97f0d32

Browse files
committed
Fix CI
1 parent d407fe1 commit 97f0d32

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ jobs:
6464
cmake ..
6565
6666
- name: "Build erlang and Elixir libs"
67-
working-directory: AtomVM/build/libs
67+
working-directory: AtomVM/build
6868
run: |
69-
make atomvmlib
69+
make esp32boot
7070
7171
- name: "Build ${{ matrix.soc }} AtomVM with atomvm_mqtt_client"
7272
working-directory: ./AtomVM/src/platforms/esp32/
@@ -83,7 +83,7 @@ jobs:
8383
working-directory: ./AtomVM/src/platforms/esp32/build
8484
run: |
8585
./mkimage.sh
86-
for i in atomvm-${{ matrix.soc }}-*.img; do
86+
for i in atomvm-${{ matrix.soc }}.img; do
8787
mv -- "${i}" "${i%.img}-atomvm_mqtt_client.img"
8888
done
8989
ls -l *.img
@@ -92,7 +92,7 @@ jobs:
9292
uses: actions/upload-artifact@v3
9393
with:
9494
name: atomvm-${{ matrix.soc }}-atomvm_mqtt_client-image
95-
path: ./AtomVM/src/platforms/esp32/build/atomvm-${{ matrix.soc }}-*.img
95+
path: ./AtomVM/src/platforms/esp32/build/atomvm-${{ matrix.soc }}-atomvm_mqtt_client.img
9696
if-no-files-found: error
9797

9898
avm-build:

0 commit comments

Comments
 (0)