Trans json to pir prgoram #341
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 and Test | |
on: | |
push: | |
branches: [ "develop","tese_pir" ] | |
pull_request: | |
branches: [ "develop","tese_pir" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ '3.8'] | |
architecture: [ 'x64' ] | |
steps: | |
# Checkout the latest branch of Paddle2ONNX. | |
- name: Checkout Paddle2ONNX | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Build paddle2onnx and Run tests | |
uses: docker://paddlepaddle/paddle:paddle2onnx-python3.9-gcc82 | |
with: | |
entrypoint: bash | |
args: .github/workflows/scripts/entrypoint.sh |