Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit e541020

Browse files
committed
[CI] Use clang when building.
1 parent c63b692 commit e541020

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ on:
1010

1111
jobs:
1212
build_amd64:
13-
name: Build WasmEdge-storage using g++ on amd64 platform
13+
name: Build WasmEdge-storage using clang++ on amd64 platform
1414
runs-on: ubuntu-latest
1515
container:
16-
image: wasmedge/wasmedge:ubuntu-build-gcc
16+
image: wasmedge/wasmedge:ubuntu-build-clang
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v2

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Create Release
1111
runs-on: ubuntu-latest
1212
container:
13-
image: wasmedge/wasmedge:ubuntu-build-gcc
13+
image: wasmedge/wasmedge:ubuntu-build-clang
1414
outputs:
1515
version: ${{ steps.prep.outputs.version }}
1616
upload_url: ${{ steps.create_release.outputs.upload_url }}
@@ -35,11 +35,11 @@ jobs:
3535
draft: true
3636
prerelease: false
3737
build_and_upload_amd64:
38-
name: Build WasmEdge-storage using g++ on amd64 platform
38+
name: Build WasmEdge-storage using clang++ on amd64 platform
3939
needs: [create]
4040
runs-on: ubuntu-latest
4141
container:
42-
image: wasmedge/wasmedge:ubuntu-build-gcc
42+
image: wasmedge/wasmedge:ubuntu-build-clang
4343
steps:
4444
- name: Checkout code
4545
uses: actions/checkout@v2

0 commit comments

Comments
 (0)