2024-04-12 16:52:31 +00:00
|
|
|
name: "Build check gemstone in SDK"
|
|
|
|
run-name: SDK build check to ${{ inputs.deploy_target }} by @${{ github.actor }}
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
2024-04-12 16:54:20 +00:00
|
|
|
build-check-sdk:
|
2024-04-12 16:52:31 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-05-17 14:50:04 +00:00
|
|
|
- name: Setup repository
|
|
|
|
run: git submodule init && git submodule update
|
2024-04-12 16:52:31 +00:00
|
|
|
- name: Setup SDK
|
2024-05-17 14:50:04 +00:00
|
|
|
run: source ./.env && docker pull servostar/gemstone:sdk-"$SDK"
|
2024-04-12 16:52:31 +00:00
|
|
|
- name: Compile
|
2024-05-17 14:02:40 +00:00
|
|
|
run: set -a && source ./.env && sh run-docker-build.sh
|