Skip to content

Commit

Permalink
Changes for testing on my fork
Browse files Browse the repository at this point in the history
  • Loading branch information
not-jenni committed Apr 6, 2022
1 parent 228761e commit 4020806
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 58 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/build_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,37 +35,37 @@ jobs:
matrix:
include:
# Ubuntu packages.
- os: ubuntu-18.04
build_package: main-dist-linux
experimental: false
- os: ubuntu-18.04
build_package: py-compiler-pkg
experimental: false
# - os: ubuntu-18.04
# build_package: main-dist-linux
# experimental: false
# - os: ubuntu-18.04
# build_package: py-compiler-pkg
# experimental: false
- os: ubuntu-18.04
build_package: py-runtime-pkg
experimental: false
- os: ubuntu-18.04
build_package: instrumented-py-runtime-pkg
experimental: true
- os: ubuntu-18.04
build_package: py-tf-compiler-tools-pkg
experimental: false
# - os: ubuntu-18.04
# build_package: instrumented-py-runtime-pkg
# experimental: true
# - os: ubuntu-18.04
# build_package: py-tf-compiler-tools-pkg
# experimental: false

# Windows packages.
- os: windows-2019
build_package: py-compiler-pkg
experimental: true
- os: windows-2019
build_package: py-runtime-pkg
experimental: true
# - os: windows-2019
# build_package: py-compiler-pkg
# experimental: true
# - os: windows-2019
# build_package: py-runtime-pkg
# experimental: true

# Macos packages.
- os: macos-latest
build_package: py-compiler-pkg
experimental: true
- os: macos-latest
build_package: py-runtime-pkg
experimental: true
# - os: macos-latest
# build_package: py-compiler-pkg
# experimental: true
# - os: macos-latest
# build_package: py-runtime-pkg
# experimental: true
env:
CIBW_BUILD_VERBOSITY: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule_candidate_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: "Tag candidate release"
runs-on: ubuntu-18.04
# Don't run this in everyone's forks.
if: github.repository == 'google/iree'
# if: github.repository == 'google/iree'
steps:
- name: Get the last green commit
id: last_green_commit
Expand Down
66 changes: 33 additions & 33 deletions .github/workflows/validate_and_publish_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
github_token: ${{secrets.WRITE_ACCESS_TOKEN}}
workflow: build_package.yml
run_id: ${{ github.event.inputs.build_run_id }}
- name: Extract and display downloaded files
run: |
tar -xf artifact/iree-dist-${{ github.event.inputs.package_version }}-linux-x86_64.tar.xz
pwd
ls -R
# - name: Extract and display downloaded files
# run: |
# tar -xf artifact/iree-dist-${{ github.event.inputs.package_version }}-linux-x86_64.tar.xz
# pwd
# ls -R
- name: Set up python
id: set_up_python
uses: actions/setup-python@v2
Expand All @@ -41,34 +41,34 @@ jobs:
- name: Install python packages
id: install_python_packages
run: |
python -m pip install -f file://$PWD/artifact/ iree-compiler iree-runtime iree-tools-tflite iree-tools-tf iree-tools-xla
- name: Run iree-benchmark-module
id: run_iree_benchmark_module
run: ./bin/iree-benchmark-module --help
- name: Run iree-benchmark-trace
id: run_iree_benchmark_trace
run: ./bin/iree-benchmark-trace --help
- name: Run iree-flatcc-cli
id: run_iree_flatcc_cli
run: ./bin/iree-flatcc-cli --help
- name: Run iree-opt
id: run_iree_opt
run: ./bin/iree-opt --help
- name: Run iree-run-mlir
id: run_iree_run_mlir
run: ./bin/iree-run-mlir --help
- name: Run iree-run-module
id: run_iree_run_module
run: ./bin/iree-run-module --help
- name: Run iree-run-trace
id: run_iree_run_trace
run: ./bin/iree-run-trace --help
- name: Run iree-tblgen
id: run_iree_tblgen
run: ./bin/iree-tblgen --help
- name: Run iree-compile
id: run_iree-compile
run: ./bin/iree-compile --help
python -m pip install -f file://$PWD/artifact/ iree-runtime
# - name: Run iree-benchmark-module
# id: run_iree_benchmark_module
# run: ./bin/iree-benchmark-module --help
# - name: Run iree-benchmark-trace
# id: run_iree_benchmark_trace
# run: ./bin/iree-benchmark-trace --help
# - name: Run iree-flatcc-cli
# id: run_iree_flatcc_cli
# run: ./bin/iree-flatcc-cli --help
# - name: Run iree-opt
# id: run_iree_opt
# run: ./bin/iree-opt --help
# - name: Run iree-run-mlir
# id: run_iree_run_mlir
# run: ./bin/iree-run-mlir --help
# - name: Run iree-run-module
# id: run_iree_run_module
# run: ./bin/iree-run-module --help
# - name: Run iree-run-trace
# id: run_iree_run_trace
# run: ./bin/iree-run-trace --help
# - name: Run iree-tblgen
# id: run_iree_tblgen
# run: ./bin/iree-tblgen --help
# - name: Run iree-compile
# id: run_iree-compile
# run: ./bin/iree-compile --help

publish_release:
name: "Publish release"
Expand Down

0 comments on commit 4020806

Please sign in to comment.