Skip to content

Commit

Permalink
Update CI to only test on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Apr 4, 2024
1 parent d137b73 commit 7ee9790
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 69 deletions.
34 changes: 0 additions & 34 deletions .appveyor.yml

This file was deleted.

64 changes: 32 additions & 32 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
task:
matrix:
- name: FreeBSD
freebsd_instance:
image_family: freebsd-13-2
env:
matrix:
- JULIA_VERSION: 1.6
- JULIA_VERSION: 1
- name: MacOS M1
macos_instance:
image: ghcr.io/cirruslabs/macos-monterey-base:latest
env:
- JULIA_VERSION: 1
install_script: |
URL="https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh"
set -x
if [ "$(uname -s)" = "Linux" ] && command -v apt; then
apt update
apt install -y curl
fi
if command -v curl; then
sh -c "$(curl ${URL})"
elif command -v wget; then
sh -c "$(wget ${URL} -q -O-)"
elif command -v fetch; then
sh -c "$(fetch ${URL} -o -)"
fi
build_script:
- cirrusjl build
test_script:
- cirrusjl test
# task:
# matrix:
# - name: FreeBSD
# freebsd_instance:
# image_family: freebsd-13-2
# env:
# matrix:
# - JULIA_VERSION: 1.6
# - JULIA_VERSION: 1
# - name: MacOS M1
# macos_instance:
# image: ghcr.io/cirruslabs/macos-monterey-base:latest
# env:
# - JULIA_VERSION: 1
# install_script: |
# URL="https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh"
# set -x
# if [ "$(uname -s)" = "Linux" ] && command -v apt; then
# apt update
# apt install -y curl
# fi
# if command -v curl; then
# sh -c "$(curl ${URL})"
# elif command -v wget; then
# sh -c "$(wget ${URL} -q -O-)"
# elif command -v fetch; then
# sh -c "$(fetch ${URL} -o -)"
# fi
# build_script:
# - cirrusjl build
# test_script:
# - cirrusjl test
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6'
# - '1.6'
- '1'
- 'nightly'
os:
- ubuntu-latest
- windows-latest
# - windows-latest
arch:
- x64
- x86
# - x86
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
Expand Down

1 comment on commit 7ee9790

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the 📜action log or 📝 job summary for details.

Unrecognized words (7)

adb
bdd
cff
ded
fca
libblastrampoline
Libdl

To accept these unrecognized words as correct, you could run the following commands

... in a clone of the git@github.com:libprima/PRIMA.jl.git repository
on the dev branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/main/apply.pl' |
perl - 'https://github.com/libprima/PRIMA.jl/actions/runs/8562581562/attempts/1'
Pattern suggestions ✂️ (2)

You could add these patterns to .github/actions/spelling/patterns.txt:

# Automatically suggested patterns
# hit-count: 4 file-count: 1
# sha-... -- uses a fancy capture
(['"]|")[0-9a-f]{40,}\g{-1}

# hit-count: 4 file-count: 1
# hex runs
\b[0-9a-fA-F]{16,}\b

Warnings (1)

See the 📜action log or 📝 job summary for details.

ℹ️ Warnings Count
ℹ️ candidate-pattern 2

See ℹ️ Event descriptions for more information.

If the flagged items are 🤯 false positives

If items relate to a ...

  • binary file (or some other file you wouldn't want to check at all).

    Please add a file path to the excludes.txt file matching the containing file.

    File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

    ^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

  • well-formed pattern.

    If you can write a pattern that would match it,
    try adding it to the patterns.txt file.

    Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

    Note that patterns can't match multiline strings.

Please sign in to comment.