2022-04-04 18:13:29 +08:00
|
|
|
name: "Setup build environment"
|
|
|
|
description: "Setup the build environment. An action so that it can be shared between in-tree/out-of-tree jobs"
|
|
|
|
|
2022-04-13 21:26:38 +08:00
|
|
|
inputs:
|
2022-04-13 23:48:04 +08:00
|
|
|
cache-suffix:
|
2022-04-13 21:26:38 +08:00
|
|
|
description: |
|
|
|
|
Additional string that is used to compute the ccache hash.
|
|
|
|
Different jobs running the action need distinct values for this key,
|
|
|
|
but the content is irrelevant.
|
|
|
|
required: true
|
|
|
|
|
2022-04-04 18:13:29 +08:00
|
|
|
runs:
|
|
|
|
using: "composite"
|
2022-08-12 07:35:15 +08:00
|
|
|
|
2022-04-04 18:13:29 +08:00
|
|
|
steps:
|
|
|
|
- name: Set up Python
|
CI script improvements (#1547)
* ci: update versions of external actions
Node.js 12 actions are deprecated and will eventually go away, so this
patch bumps the old actions to their latest versions that use Node.js
16.
* ci: replace deprecated action with bash commands
The llvm/actions/install-ninja action uses Node.js 12, which is
deprecated. Since that action is not updated to work with Node.js 16,
this patch replaces that action with equivalent bash commands to install
Ninja.
* ci: use smaller ccache artifacts to reduce evictions
Over time, our ccache sizes have grown quite large (some as large as
1.3 GB), which results in us routinely exceeding GitHub's limits, thus
triggering frequent cache evictions. As a result, cache downloads and
uploads take unnecessary long, in addition to fewer cache entries being
available.
Based on experiments on a clean cache state, it appears that we need
less than 300 MB of (compressed) ccache artifacts for each build type.
Anything larger than that will accrue changes from the past that aren't
needed.
To alleviate the cache burden, this patch sets the maximum ccache size
to be 300 MB. This change should not affect the success or failure of
our builds. I will monitor the build times to check whether this change
causes any performance degradation.
* ci: use consistent platform identifiers
Prior to this patch, some of our builds ran on `ubuntu-latest`, while
some others ran on `ubuntu-20.04` and others ran on `ubuntu-22.04`, with
similar situations for macOS and windows. This patch instead sets all
Linux builds to run on `ubuntu-latest`, all macOS builds to run on
`macos-latest`, and all Windows builds to run on `windows-latest`, to
make debugging future CI failures a little easier.
2022-11-03 10:37:01 +08:00
|
|
|
uses: actions/setup-python@v4
|
2022-04-04 18:13:29 +08:00
|
|
|
with:
|
2022-10-26 07:13:31 +08:00
|
|
|
python-version: '3.10'
|
2022-08-12 07:35:15 +08:00
|
|
|
|
2022-04-04 18:13:29 +08:00
|
|
|
- name: Install MLIR Python depends
|
|
|
|
run: |
|
|
|
|
python -m pip install -r $GITHUB_WORKSPACE/externals/llvm-project/mlir/python/requirements.txt
|
|
|
|
shell: bash
|
2022-08-12 07:35:15 +08:00
|
|
|
|
2022-04-04 18:13:29 +08:00
|
|
|
- name: Install PyTorch nightly depends
|
|
|
|
run: |
|
|
|
|
python -m pip install -r requirements.txt
|
|
|
|
shell: bash
|
2022-08-12 07:35:15 +08:00
|
|
|
|
CI script improvements (#1547)
* ci: update versions of external actions
Node.js 12 actions are deprecated and will eventually go away, so this
patch bumps the old actions to their latest versions that use Node.js
16.
* ci: replace deprecated action with bash commands
The llvm/actions/install-ninja action uses Node.js 12, which is
deprecated. Since that action is not updated to work with Node.js 16,
this patch replaces that action with equivalent bash commands to install
Ninja.
* ci: use smaller ccache artifacts to reduce evictions
Over time, our ccache sizes have grown quite large (some as large as
1.3 GB), which results in us routinely exceeding GitHub's limits, thus
triggering frequent cache evictions. As a result, cache downloads and
uploads take unnecessary long, in addition to fewer cache entries being
available.
Based on experiments on a clean cache state, it appears that we need
less than 300 MB of (compressed) ccache artifacts for each build type.
Anything larger than that will accrue changes from the past that aren't
needed.
To alleviate the cache burden, this patch sets the maximum ccache size
to be 300 MB. This change should not affect the success or failure of
our builds. I will monitor the build times to check whether this change
causes any performance degradation.
* ci: use consistent platform identifiers
Prior to this patch, some of our builds ran on `ubuntu-latest`, while
some others ran on `ubuntu-20.04` and others ran on `ubuntu-22.04`, with
similar situations for macOS and windows. This patch instead sets all
Linux builds to run on `ubuntu-latest`, all macOS builds to run on
`macos-latest`, and all Windows builds to run on `windows-latest`, to
make debugging future CI failures a little easier.
2022-11-03 10:37:01 +08:00
|
|
|
- name: Install Ninja (Linux)
|
|
|
|
if: ${{ runner.os == 'Linux' }}
|
|
|
|
run: sudo apt-get install -y ninja-build
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Install Ninja (macOS)
|
|
|
|
if: ${{ runner.os == 'macOS' }}
|
|
|
|
run: brew install ninja
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Install Ninja (Windows)
|
|
|
|
if: ${{ runner.os == 'Windows' }}
|
|
|
|
run: pip install ninja
|
|
|
|
shell: bash
|
2022-08-12 07:35:15 +08:00
|
|
|
|
2022-04-04 18:13:29 +08:00
|
|
|
- name: Ccache for C++ compilation
|
2022-08-12 07:35:15 +08:00
|
|
|
uses: hendrikmuhs/ccache-action@v1.2
|
2022-04-04 18:13:29 +08:00
|
|
|
with:
|
2022-08-12 07:35:15 +08:00
|
|
|
key: ${{ runner.os }}-torch_mlir_build_assets-${{ inputs.cache-suffix }}
|
CI script improvements (#1547)
* ci: update versions of external actions
Node.js 12 actions are deprecated and will eventually go away, so this
patch bumps the old actions to their latest versions that use Node.js
16.
* ci: replace deprecated action with bash commands
The llvm/actions/install-ninja action uses Node.js 12, which is
deprecated. Since that action is not updated to work with Node.js 16,
this patch replaces that action with equivalent bash commands to install
Ninja.
* ci: use smaller ccache artifacts to reduce evictions
Over time, our ccache sizes have grown quite large (some as large as
1.3 GB), which results in us routinely exceeding GitHub's limits, thus
triggering frequent cache evictions. As a result, cache downloads and
uploads take unnecessary long, in addition to fewer cache entries being
available.
Based on experiments on a clean cache state, it appears that we need
less than 300 MB of (compressed) ccache artifacts for each build type.
Anything larger than that will accrue changes from the past that aren't
needed.
To alleviate the cache burden, this patch sets the maximum ccache size
to be 300 MB. This change should not affect the success or failure of
our builds. I will monitor the build times to check whether this change
causes any performance degradation.
* ci: use consistent platform identifiers
Prior to this patch, some of our builds ran on `ubuntu-latest`, while
some others ran on `ubuntu-20.04` and others ran on `ubuntu-22.04`, with
similar situations for macOS and windows. This patch instead sets all
Linux builds to run on `ubuntu-latest`, all macOS builds to run on
`macos-latest`, and all Windows builds to run on `windows-latest`, to
make debugging future CI failures a little easier.
2022-11-03 10:37:01 +08:00
|
|
|
max-size: 300M
|
2022-09-01 07:09:46 +08:00
|
|
|
verbose: 2
|