Skip to content

Commit 68fccc4

Browse files
Fix night run CI (#3640)
Manually git clone and install dependencies instead of using git action on Ubuntu 14.04 runner.
1 parent 8af1550 commit 68fccc4

1 file changed

Lines changed: 7 additions & 10 deletions

File tree

.github/workflows/nightly_run.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)