Skip to content

Commit

Permalink
Merge pull request #6 from jlk9/ci
Browse files Browse the repository at this point in the history
Adding CI
  • Loading branch information
jlk9 authored Aug 22, 2024
2 parents dc72aa5 + 9aadc24 commit e8e47e3
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 3,560 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI

on:
push:
branches:
- main
- ci
tags: '*'
pull_request:
types: [opened, synchronize, reopened]
schedule:
- cron: '0 0 * * 0'

jobs:
moonshot:
env:
CUDA_VISIBLE_DEVICES: 1
JULIA_DEPOT_PATH: /scratch/github-actions/julia_depot
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
runs-on: self-hosted
strategy:
matrix:
os: [ubuntu-22.04]
julia-version: ['1.10']
julia-arch: [x64]
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
Loading

0 comments on commit e8e47e3

Please sign in to comment.