Upgrade conan2 (#1242) #4635
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: compiler-python-release | |
on: [push, pull_request] | |
concurrency: | |
group: compiler-python-release-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' && !startsWith(github.ref, 'refs/heads/release/') }} | |
jobs: | |
build-compiler: | |
name: build-${{matrix.config.name}} | |
runs-on: ${{matrix.config.os}} | |
strategy: | |
matrix: | |
dotnet-version: ['7.0'] | |
config: | |
# - {name: aarch64-macos, os: macos-14, shell: bash, rid: osx-x64, buildType: Release} | |
- {name: x86_64-linux, os: ubuntu-latest, shell: bash, rid: linux-x64, buildType: Release} | |
# - {name: x86_64-windows, os: windows-2019, shell: bash, rid: win-x64, buildType: Release} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '7.0.x' | |
- name: Set dotnet version | |
run: | | |
cd ${{github.workspace}} | |
sh set_dotnet_version.sh 7 | |
- name: Cache NuGet packages | |
uses: actions/cache@v3 | |
with: | |
path: ${{ github.workspace }}/.nuget/packages | |
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-nuget- | |
- name: Build | |
run: | | |
dotnet restore -r ${{matrix.config.rid}} | |
dotnet publish src/Nncase.Compiler -c ${{matrix.config.buildType}} --no-restore --sc false -r ${{matrix.config.rid}} | |
- name: Upload nncase Build Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nncase-${{matrix.config.name}} | |
path: ${{github.workspace}}/src/Nncase.Compiler/bin/${{matrix.config.buildType}}/net${{matrix.dotnet-version}}/${{matrix.config.rid}}/publish | |
if-no-files-found: error | |
build-native: | |
needs: [build-compiler] | |
name: build-native-${{matrix.config.name}} | |
runs-on: ${{matrix.config.os}} | |
strategy: | |
matrix: | |
dotnet-version: ['7.0'] | |
config: | |
# - {name: aarch64-macos, os: macos-14} | |
- {name: x86_64-linux, os: ubuntu-latest} | |
# - {name: x86_64-windows, os: windows-2019, arch: x64} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: seanmiddleditch/gha-setup-ninja@master | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '7.0.x' | |
- name: Set dotnet version | |
run: | | |
cd ${{github.workspace}} | |
sh set_dotnet_version.sh 7 | |
- name: Verify .NET Installation | |
run: dotnet --info | |
- name: Install nncase | |
uses: actions/download-artifact@v3 | |
with: | |
name: nncase-${{matrix.config.name}} | |
path: ${{github.workspace}}/install | |
- name: Set up build environment (Windows, Visual Studio) | |
uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: ${{matrix.config.arch}} | |
if: runner.os == 'Windows' | |
- name: Set up build environment (Macos) | |
run: | | |
brew install sunnycase/core/[email protected] | |
if: runner.os == 'Macos' | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install cibuildwheel | |
run: pip install cibuildwheel | |
- name: Build wheel | |
run: python -m cibuildwheel --output-dir wheelhouse | |
- name: Upload nncase-python Build Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nncase-python-${{matrix.config.name}} | |
path: ${{github.workspace}}/wheelhouse | |
if-no-files-found: error |