blob: 6f4fdffea51bdccd3a34d7801ae6f5e778fb09eb [file] [log] [blame]
# Copyright 2022 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
#
# Workflow for running Examples of IREE usage against releases periodically.
name: samples
on:
schedule:
# Weekdays at 13:00 UTC = 05:00 PST / 06:00 PDT. No one should be dealing
# with this on weekends.
- cron: "5 4 * * 1-5"
workflow_dispatch:
jobs:
colab:
runs-on: ubuntu-20.04-64core
steps:
- name: "Checking out repository"
uses: actions/checkout@e2f20e631ae6d7dd3b768f56a5d2af784dd54791 # v2.5.0
- name: "Testing Colab Notebooks"
run: |
./build_tools/github_actions/docker_run.sh \
gcr.io/iree-oss/samples@sha256:afe6bf4108ecf7ff8bd2cda982a06f3ba089769a86a2e7b7c152d8e69379732b \
./samples/colab/test_notebooks.py
samples:
runs-on: ubuntu-20.04-64core
steps:
- name: "Checking out repository"
uses: actions/checkout@e2f20e631ae6d7dd3b768f56a5d2af784dd54791 # v2.5.0
- name: "Testing Samples"
run: |
./build_tools/github_actions/docker_run.sh \
gcr.io/iree-oss/samples@sha256:afe6bf4108ecf7ff8bd2cda982a06f3ba089769a86a2e7b7c152d8e69379732b \
./build_tools/testing/test_samples.sh
# FIXME: unify this with host build from ci.yml. This is complicated by
# incompatibility between storage options for GitHub-managed and self-hosted
# runners.
web:
runs-on: ubuntu-20.04-64core
# TODO: remove dependence on magic matching build dir names
env:
HOST_BUILD_DIR: build-host-install
steps:
- name: "Checking out repository"
uses: actions/checkout@e2f20e631ae6d7dd3b768f56a5d2af784dd54791 # v2.5.0
with:
submodules: true
- name: "Building host tools"
run: |
./build_tools/github_actions/docker_run.sh \
--env "CCACHE_NAMESPACE=gcr.io/iree-oss/base@sha256:f26a5aa5f8d3705c6b80c71d04fafb360861f1907bdd1b1f5f19480b6192664e" \
gcr.io/iree-oss/base@sha256:f26a5aa5f8d3705c6b80c71d04fafb360861f1907bdd1b1f5f19480b6192664e \
./build_tools/cmake/build_host_tools.sh "${HOST_BUILD_DIR}"
- name: "Testing Experimental Web Samples"
env:
IREE_EMPSCRIPTEN_BUILD_DIR: build-emscripten
run: |
./build_tools/github_actions/docker_run.sh \
--env "IREE_HOST_BUILD_DIR=${HOST_BUILD_DIR}" \
--env "IREE_EMPSCRIPTEN_BUILD_DIR=${IREE_EMPSCRIPTEN_BUILD_DIR}" \
gcr.io/iree-oss/emscripten@sha256:fdb2bf6b0701a6de80f4f708ea86b001279c8acd904c34ef4d05ee3802711e45 \
./experimental/web/build_and_test_samples.sh