atomics: update llvmcall to use opaque pointers #217
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: | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'LICENSE.md' | |
- 'README.md' | |
- '.github/workflows/TagBot.yml' | |
push: | |
tags: '*' | |
branches: | |
- main | |
paths-ignore: | |
- 'LICENSE.md' | |
- 'README.md' | |
- '.github/workflows/TagBot.yml' | |
jobs: | |
test: | |
timeout-minutes: 30 | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
arch: | |
- x64 | |
- x86 | |
exclusive: | |
- '0' | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-13 # Intel | |
threads: | |
- '5' | |
version: | |
- '1.11' | |
# - '1' # Use this when julia +1 > 1.11 | |
exclude: | |
- os: macos-13 | |
arch: x86 # 32-bit Julia binaries are not available on macOS | |
include: | |
- arch: aarch64 | |
exclusive: '0' | |
os: macOS-latest # Arm | |
threads: '5' | |
version: '1.11' | |
# (exclusive=1, threads=2) | |
- arch: x64 | |
exclusive: '1' | |
os: ubuntu-latest | |
threads: '2' | |
version: '1.11' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-buildpkg@v1 | |
- uses: julia-actions/julia-runtest@v1 | |
env: | |
JULIA_EXCLUSIVE: ${{ matrix.exclusive }} | |
JULIA_NUM_THREADS: ${{ matrix.threads }} | |
- uses: julia-actions/julia-processcoverage@v1 | |
- uses: codecov/codecov-action@v3 | |
with: | |
file: lcov.info | |
docs: | |
name: Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: '1' | |
- run: | | |
julia --project=docs -e ' | |
using Pkg | |
Pkg.develop(PackageSpec(path=pwd())) | |
Pkg.instantiate()' | |
- run: | | |
julia --project=docs -e ' | |
using Documenter: doctest | |
using ThreadingUtilities | |
doctest(ThreadingUtilities)' | |
- run: julia --project=docs docs/make.jl | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }} |