From c02c759a942555cf2eed6f31fa608bb85d9c4b71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pawela?= Date: Fri, 29 Mar 2024 18:26:46 +0100 Subject: [PATCH] fix ci, make --- .github/workflows/CI.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 777dc98..4c92a49 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -4,24 +4,21 @@ on: - pull_request jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - runs-on: ${{ matrix.os }} + name: Julia ${{ matrix.version }} + runs-on: [self-hosted,titan,gpu] strategy: fail-fast: false matrix: version: - - '1.5' - os: - - ubuntu-latest - - macOS-latest - arch: - - x64 + - '1.9' + - '1.10' steps: - uses: actions/checkout@v2 - uses: julia-actions/setup-julia@v1 with: version: ${{ matrix.version }} - arch: ${{ matrix.arch }} + - name: Fix TransmuteDims + run: julia --project=@. --color=yes -e 'using Pkg; Pkg.add(name="TransmuteDims", rev="strided2")' - uses: julia-actions/julia-buildpkg@latest - uses: julia-actions/julia-runtest@latest env: