added build-check-sdk workflow

This commit is contained in:
Sven Vogel 2024-04-12 18:52:31 +02:00
parent 73bfbd15f9
commit 136c74744b
1 changed files with 14 additions and 0 deletions

14
.github/workflows/build-check-sdk.yaml vendored Normal file
View File

@ -0,0 +1,14 @@
name: "Build check gemstone in SDK"
run-name: SDK build check to ${{ inputs.deploy_target }} by @${{ github.actor }}
on: [push, pull_request]
env:
SDK: 0.1.0-alma-9.3
jobs:
test-rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup SDK
run: docker pull servostar/gemstone:sdk-"$SDK" && docker build --tag gemstone:devkit-"$SDK" .
- name: Compile
run: docker run gemstone:devkit-"$SDK" make -B release