Skip to content

fix: cbindgen

fix: cbindgen #7

name: Build - linux ubuntu1804
on:
push:
branches:
- "**"
tags:
- "**"
paths-ignore:
- "tools/**"
- "docs/**"
- ".vscode/**"
- ".github/configs/**"
- "**.md"
pull_request:
jobs:
build-gcc:
runs-on: ubuntu-latest
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
strategy:
matrix:
build_type: [release]
container:
image: ghcr.io/${{ github.repository_owner }}/ten_building_ubuntu1804:feature-ci
steps:
- uses: actions/checkout@v3
with:
fetch-depth: "0"
submodules: "true"
- name: Build
run: |
export PATH=$(pwd)/core/ten_gn/:$PATH
echo $PATH
rustup default nightly
tgn gen linux x64 ${{ matrix.build_type }} -- is_clang=false
tgn build linux x64 ${{ matrix.build_type }}
tree out