hathach 5 лет назад
Родитель
Сommit
e6ce18b019
1 измененных файлов с 2 добавлено и 6 удалено
  1. 2 6
      .github/workflows/build.yml

+ 2 - 6
.github/workflows/build.yml

@@ -51,12 +51,11 @@ jobs:
     - name: Checkout TinyUSB
       uses: actions/checkout@v2
       with:
-        # Cannot do submodule checkout here since LWIP's git server cannot checkout unadventised commits (it must use tags)
         submodules: 'true'
 
     - name: Checkout Sub-Submodules
       run: |
-        # some submodule has it own submodule that need to be fetched as well
+        # some submodule has it own submodules that need to be fetched as well
         git submodule update --init --recursive hw/mcu/microchip
         git submodule update --init --recursive lib/FreeRTOS
 
@@ -113,8 +112,6 @@ jobs:
         tar -C $HOME -xaf /tmp/dl/msp430-gcc.tar.bz2
 
     - name: Install Toolchains
-      env:
-        MSP430GCC_URL: http://software-dl.ti.com/msp430/msp430_public_sw/mcu/msp430/MSPGCC/9_2_0_0/export/msp430-gcc-9.2.0.50_linux64.tar.bz2
       run: |
         # ARM & RISC-V GCC from xpack
         npm install --global xpm
@@ -129,12 +126,11 @@ jobs:
     - name: Checkout TinyUSB
       uses: actions/checkout@v2
       with:
-        # Cannot do submodule checkout here since LWIP's git server cannot checkout unadventised commits (it must use tags)
         submodules: 'true'
 
     - name: Checkout Sub-Submodules
       run: |
-        # some submodule has it own submodule that need to be fetched as well
+        # some submodule has it own submodules that need to be fetched as well
         git submodule update --init --recursive hw/mcu/microchip
         git submodule update --init --recursive lib/FreeRTOS