Skip to content

CI-x86_64

CI-x86_64 #6

Workflow file for this run

name: CI-x86_64
on:
workflow_dispatch:
release:
# this runs CI only when a release is created at first (and not when it is
# edited or published)
types: [created]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4.2.2
- name: Display CI properties
run: |
WD=$(pwd)
python3 -V
echo $WD
echo
clang --version | head -n 1
echo
gcc --version | head -n 1
echo "Node :"
node -v
echo
echo "Android support:"
echo
echo "Github env:"
env|grep GITHUB
- name: Build sdk
run: |
bash docker-run.sh
- name: Upload sdk to Github Releases
if: github.event_name == 'release'
uses: svenstaro/upload-release-action@2.9.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: /tmp/fs/tmp/sdk/dist/*.tar.lz4
file_glob: true
tag: ${{ github.ref }}