File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -323,16 +323,13 @@ jobs:
323323 - make_options_run_mode : $FAST_JIT_BUILD_OPTIONS
324324 make_options_feature : " -DWAMR_BUILD_MEMORY64=1"
325325 steps :
326- - name : checkout
327- uses : actions/checkout@v3
328-
329326 - name : Install dependencies
330- uses : nick-fields/retry@v2
331- with :
332- timeout_minutes : 10
333- max_attempts : 3
334- command : apt update && apt install -y make g++-4.8 gcc-4.8 wget git
335- on_retry_command : sudo rm -r /var/lib/apt/lists/*
327+ run : |
328+ apt update && apt install -y make g++-4.8 gcc-4.8 wget git
329+
330+ - name : checkout
331+ run : |
332+ git clone https://github.com/${{ github.repository }} wamr
336333
337334 - name : Install cmake
338335 run : |
@@ -345,7 +342,7 @@ jobs:
345342 mkdir build && cd build
346343 cmake .. ${{ matrix.make_options_run_mode }} ${{ matrix.make_options_feature }} -DCMAKE_C_COMPILER=gcc-4.8 -DCMAKE_CXX_COMPILER=g++-4.8
347344 cmake --build . --config Release --parallel 4
348- working-directory : product-mini/platforms/linux
345+ working-directory : wamr/ product-mini/platforms/linux
349346
350347 build_samples_wasm_c_api :
351348 needs :
You can’t perform that action at this time.
0 commit comments