Skip to content

Commit

Permalink
ci windows debug
Browse files Browse the repository at this point in the history
  • Loading branch information
carstenbauer committed Aug 6, 2024
1 parent 753ba49 commit 7dfa122
Showing 1 changed file with 6 additions and 47 deletions.
53 changes: 6 additions & 47 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,50 +1,9 @@
name: CI
on:
push:
branches:
- main
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/') }}
on: [push]
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
actions: write
contents: read
strategy:
fail-fast: false
matrix:
version:
- '1.10'
- 'pre'
os:
- ubuntu-latest
- macos-latest
- windows-latest
arch:
- x64
- x86
exclude:
- os: macos-latest
arch: x86

build:
runs-on: windows-latest
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:
LD_LIBRARY_PATH: /usr/local/lib
JULIA_NUM_THREADS: 4,2
- uses: actions/checkout@v4
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3

0 comments on commit 7dfa122

Please sign in to comment.