[Changelog] Update changelog for v0.14.0 release. #163
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
concurrency: | |
group: build-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- "*" | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build_ubuntu: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
go: [ '1.22.x', '1.23.x' ] | |
name: Build WasmEdge-go on Ubuntu 24.04 x86_64 with Go ${{ matrix.go }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Check go version | |
run: go version | |
- name: Install wasmedge | |
run: | | |
wget -qO- https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -v 0.14.0 | |
- name: Build WasmEdge-go | |
run: | | |
source $HOME/.wasmedge/env | |
go build ./wasmedge/ | |
build_macos: | |
runs-on: macos-14 | |
strategy: | |
matrix: | |
go: [ '1.22.x', '1.23.x' ] | |
name: Build WasmEdge-go on MacOS 14 x86_64 with Go ${{ matrix.go }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Check go version | |
run: go version | |
- name: Install wasmedge | |
run: | | |
wget -qO- https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash -s -- -v 0.14.0 | |
- name: Build WasmEdge-go | |
run: | | |
source $HOME/.wasmedge/env | |
go build ./wasmedge/ |