-
Notifications
You must be signed in to change notification settings - Fork 68
35 lines (33 loc) · 1.05 KB
/
CompatHelper.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
name: CompatHelper
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Julia compatibility
id: julia_compat
# NOTE: this requires a julia compat lower-bound with minor version!
run : |
version=$(grep '^julia = ' Project.toml | grep -o '".*"' | cut -d '"' -f2)
echo "::set-output name=version::$version"
- uses: julia-actions/setup-julia@v2
with:
version: ${{ steps.julia_compat.outputs.version }}
arch: x64
show-versioninfo: true
- name: Pkg.add
shell: julia --color=yes {0}
run: |
import Pkg
Pkg.add("CompatHelper")
- name: CompatHelper.main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: julia --color=yes {0}
run: |
import CompatHelper
CompatHelper.main(; include_jll = true, subdirs = ["", "docs", "deps", "lib/EnzymeCore", "lib/EnzymeTestUtils"])