Skip to content

Commit

Permalink
Merge pull request #19 from andrzejressel/build-language-plugin
Browse files Browse the repository at this point in the history
Build language plugin
  • Loading branch information
mergify[bot] committed Mar 9, 2024
2 parents 092904b + 5e79f4c commit 1b3b47e
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/rust.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Rust
name: Build

on:
push:
Expand Down Expand Up @@ -28,11 +28,20 @@ jobs:
restore-keys: |
${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-
${{ runner.os }}-cargo-
- uses: actions/setup-go@v5
with:
go-version: '^1.22.0'
cache-dependency-path: "**/go.sum"
- run: go version
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
version: "25.3"
- name: Build
- run: protoc --version
- name: Build language plugin
run: ./build.sh
working-directory: pulumi-language-wasm
- name: Build WASM support
run: |
cargo install cargo-component@0.9.0 --locked || cargo-component --version
cargo build --verbose
Expand Down

0 comments on commit 1b3b47e

Please sign in to comment.