Minimal essential changes. #769
Workflow file for this run
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: | |
push: | |
branches: | |
- main | |
- v0.6.x | |
tags: '*' | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
test: | |
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} x Python ${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
julia-version: | |
- '1.10' | |
# - 'nightly' | |
python-version: | |
- '3.8' | |
os: | |
- ubuntu-latest | |
arch: | |
- x64 | |
# - x86 (this fails, why?) | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.julia-version }} | |
arch: ${{ matrix.arch }} | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: actions/cache@v1 | |
env: | |
cache-name: cache-artifacts | |
with: | |
path: ~/.julia/artifacts | |
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | |
restore-keys: | | |
${{ runner.os }}-test-${{ env.cache-name }}- | |
${{ runner.os }}-test- | |
${{ runner.os }}- | |
- run: | | |
using Pkg | |
Pkg.pkg"registry add https://github.com/ACEsuit/ACEregistry" | |
shell: bash -c "julia --color=yes {0}" | |
- uses: julia-actions/julia-buildpkg@v1 | |
- name: "test-precompile" | |
run: | | |
using Pkg | |
Pkg.precompile() | |
shell: bash -c "julia --color=yes {0}" | |
- uses: julia-actions/julia-runtest@v1 | |
# test_mpi: | |
# name: Julia MPI ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} x Python ${{ matrix.python-version }} | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# julia-version: | |
# - 'nightly' | |
# python-version: | |
# - '3.8' | |
# os: | |
# - ubuntu-latest | |
# arch: | |
# - x64 | |
# # - x86 (this fails, why?) | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - uses: julia-actions/setup-julia@v1 | |
# with: | |
# version: ${{ matrix.julia-version }} | |
# arch: ${{ matrix.arch }} | |
# - uses: actions/setup-python@v2 | |
# with: | |
# python-version: ${{ matrix.python-version }} | |
# - uses: actions/cache@v1 | |
# env: | |
# cache-name: cache-artifacts | |
# with: | |
# path: ~/.julia/artifacts | |
# key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | |
# restore-keys: | | |
# ${{ runner.os }}-test-${{ env.cache-name }}- | |
# ${{ runner.os }}-test- | |
# ${{ runner.os }}- | |
# - run: | | |
# using Pkg | |
# Pkg.pkg"registry add https://github.com/ACEsuit/ACEregistry" | |
# shell: bash -c "julia --color=yes {0}" | |
# - uses: julia-actions/julia-buildpkg@v1 | |
# - name: Install MPI | |
# run: | | |
# sudo apt install -y -q mpich libmpich-dev | |
# mpirun --version | |
# - name: Set JULIA_PROJECT | |
# run: echo "JULIA_PROJECT=$(pwd)" >> $GITHUB_ENV | |
# - name: Test MPI fit | |
# run: mpirun -np 3 julia test/test_mpi.jl | |
docs: | |
name: Documentation | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: '1' | |
- run: | | |
using Pkg | |
Pkg.pkg"registry add https://github.com/ACEsuit/ACEregistry" | |
shell: bash -c "julia --color=yes {0}" | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: julia-actions/julia-docdeploy@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} | |
- run: | | |
julia --project=docs -e ' | |
using Documenter: DocMeta, doctest | |
using ACEpotentials | |
DocMeta.setdocmeta!(ACEpotentials, :DocTestSetup, :(using ACEpotentials); recursive=true) | |
doctest(ACEpotentials)' |