Skip to content

Commit

Permalink
fix: Split directory and binary for MicroPython download
Browse files Browse the repository at this point in the history
  • Loading branch information
cpswan committed Jan 23, 2024
1 parent 2abfcf3 commit 25fa3f4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ jobs:
- name: Install MicroPython and run tests
run: |
DLURL="https://github.com/atsign-foundation/micropython/releases/download/"
ATMPREL="1.20.0_3faded33f_AES_CTR/micropython_1.20.0_3faded33f_linux_x64.tgz"
wget ${DLURL}${ATMPREL}
tar -xvf ${ATMPREL}
ATMPRELDIR="1.20.0_3faded33f_AES_CTR/"
ATMPRELBIN="micropython_1.20.0_3faded33f_linux_x64.tgz"
wget ${DLURL}${ATMPRELDIR}${ATMPRELBIN}
tar -xvf ${ATMPRELBIN}
export MICROPY_MICROPYTHON="$(pwd)/micropython"
cd tests
./run-tests.py -d atsign
Expand Down

0 comments on commit 25fa3f4

Please sign in to comment.