CI #3485
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: CI | |
on: | |
schedule: | |
- cron: "30 */2 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: self-hosted | |
permissions: | |
issues: write | |
contents: write | |
concurrency: | |
group: baseline | |
cancel-in-progress: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Set up Git | |
run: | | |
git config user.name "github-actions[bot]" | |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git -C llvm/llvm-project checkout . | |
git -C llvm/llvm-project clean -fdx | |
- name: Update LLVM | |
run: ${{ github.workspace }}/scripts/update_llvm.sh | |
- name: Update ASM | |
id: update | |
run: ${{ github.workspace }}/scripts/update_optimized.sh | |
- name: Report | |
uses: JasonEtco/create-an-issue@v2 | |
if: steps.update.outputs.SHOULD_OPEN_ISSUE == '1' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
filename: scripts/issue.md |