Skip to content

Commit

Permalink
Merge branch 'master' into im/ilp64
Browse files Browse the repository at this point in the history
  • Loading branch information
ViralBShah authored Jan 2, 2024
2 parents 44859a8 + 4128618 commit 5408701
Showing 1 changed file with 13 additions and 18 deletions.
31 changes: 13 additions & 18 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,22 @@
name: CompatHelper

on:
schedule:
- cron: '0 1 * * *'
issues:
types: [opened, reopened]

- cron: '0 0 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1.3.1]
julia-arch: [x64]
os: [ubuntu-latest]
CompatHelper:
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@latest
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- name: Install dependencies
run: julia -e 'using Pkg; Pkg.add(Pkg.PackageSpec(name = "CompatHelper", url = "https://github.com/bcbi/CompatHelper.jl.git"))'
version: '1'
arch: x64
show-versioninfo: true
- name: Pkg.add
run: julia --color=yes -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JULIA_DEBUG: CompatHelper
run: julia -e 'using CompatHelper; CompatHelper.main()'
COMPATHELPER_PRIV: ${{ secrets.FUTURETAGBOT_PRIVATE_KEY }}
run: julia --color=yes -e 'using CompatHelper; CompatHelper.main(; include_jll = true)'

0 comments on commit 5408701

Please sign in to comment.