Skip to content

Commit 37a2f05

Browse files
committed
ci: drop this commit
Signed-off-by: Yi Huang <[email protected]>
1 parent 1daa0b2 commit 37a2f05

File tree

1 file changed

+3
-29
lines changed

1 file changed

+3
-29
lines changed

.github/workflows/build-on-linux.yml

Lines changed: 3 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ jobs:
2020
matrix:
2121
include: ${{ fromJSON(inputs.plugins) }}
2222
name: ${{ matrix.plugin }}
23-
runs-on: ${{ matrix.runner }}
24-
container:
25-
image: wasmedge/wasmedge:${{ matrix.docker_tag }}
23+
runs-on: ubuntu-latest
2624
env:
2725
bin: lib${{ matrix.target }}.so
2826
target: ${{ matrix.test }} # TODO: use matrix.target on release
@@ -32,32 +30,8 @@ jobs:
3230
- id: var
3331
run: |
3432
echo "artifact=WasmEdge-plugin-${{ matrix.plugin }}-${{ inputs.version }}-${{ matrix.asset_tag }}.tar.gz" >> "${GITHUB_OUTPUT}"
35-
- uses: actions/checkout@v4
36-
with:
37-
fetch-depth: 0
38-
repository: 'WasmEdge/WasmEdge' # TODO: checkout plugins from this repository
39-
- name: Ensure git safe directory
40-
run: |
41-
git config --global --add safe.directory "$(pwd)"
42-
- name: Build ${{ matrix.plugin }}
43-
run: |
44-
# TODO: Disable BUILD_TESTS on release
45-
# TODO: Enable CXX11_ABI if not manylinux_2_28
46-
cmake -Bbuild -GNinja \
47-
-DCMAKE_BUILD_TYPE=Release \
48-
-DWASMEDGE_BUILD_TESTS=ON \
49-
-DWASMEDGE_BUILD_TOOLS=OFF \
50-
-DWASMEDGE_USE_LLVM=OFF \
51-
-DWASMEDGE_USE_CXX11_ABI=OFF \
52-
"-DOPENSSL_ROOT_DIR=${OpenSSL_DIR}" \
53-
${{ matrix.options }}
54-
cmake --build build --target "${target}"
55-
56-
cp -f "${output_dir}/${bin}" "${bin}"
57-
tar -zcvf "${{ steps.var.outputs.artifact }}" "${bin}"
58-
- name: Test ${{ matrix.plugin }}
59-
run: |
60-
cd "${test_dir}" && "./${target}"
33+
- run: |
34+
echo "Dummy file" >> "${{ steps.var.outputs.artifact }}"
6135
- name: Upload ${{ steps.var.outputs.artifact }}
6236
uses: actions/upload-artifact@v4
6337
with:

0 commit comments

Comments
 (0)