forked from iree-org/iree
-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (51 loc) · 1.95 KB
/
test_package.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Copyright 2024 The IREE Authors
#
# Licensed under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
name: Test Package
on:
pull_request:
workflow_dispatch:
# TODO(scotttodd): input for release tag or artifact location
# inputs:
# release_id:
# description: "Release id to publish"
# required: true
# package_version:
# description: "Version of the package"
# required: true
# build_run_id:
# description: "Run ID for the build_package.yml workflow that triggered this workflow"
# required: true
jobs:
linux_x86_64_cpu:
name: Test on Linux (x86_64) CPU
runs-on: ubuntu-20.04
steps:
- name: "Checking out repository"
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 # v3.5.0
- name: "Checking out runtime submodules"
run: ./build_tools/scripts/git/update_runtime_submodules.sh
- name: "Downloading release package"
uses: robinraju/release-downloader@368754b9c6f47c345fcfbf42bcb577c2f0f5f395 # v1.9
with:
repository: "openxla/iree"
tag: "candidate-20240131.787"
# TODO(scotttodd): infer filename if possible / get from inputs
fileName: "iree-dist-20240131.787-linux-x86_64.tar.xz"
- name: "Extracting package archive"
run: |
mkdir iree-dist
tar -xf "iree-dist-20240131.787-linux-x86_64.tar.xz" -C "iree-dist"
- name: "Inspecting package archive"
run: |
ls iree-dist
- name: "Installing dependencies"
run: |
python -m pip install lit
- name: "Testing package"
run: |
./build_tools/github_actions/docker_run.sh \
gcr.io/iree-oss/base@sha256:61e9aae211007dbad95e1f429e9e5121fd5968c204791038424979c21146cf75 \
./build_tools/pkgci/test_package.sh iree-dist