fix: cbindgen #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |