Skip to content

Commit

Permalink
refactor ci
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Aug 3, 2024
1 parent 8588097 commit 51af88c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ jobs:
- name: Build
run: |
cargo build ${{ matrix.options }}
continue-on-error: ${{ contains(matrix.options, 'cuda') }}
# continue-on-error: ${{ contains(matrix.options, 'cuda') }}

- name: Find Runtime Libraries Windows
if: contains(matrix.platform, 'windows')
run: |
C:\msys64\usr\bin\find -name "*.lib"
# - name: Find Runtime Libraries Windows
# if: contains(matrix.platform, 'windows')
# run: |
# C:\msys64\usr\bin\find -name "*.lib"

- name: Find Runtime Libraries Linux
if: contains(matrix.platform, 'ubuntu')
run: |
find -name "*.a"
# - name: Find Runtime Libraries Linux
# if: contains(matrix.platform, 'ubuntu')
# run: |
# find -name "*.a"
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust-version: [stable, nightly]
os: [macos-latest]
rust-version: [stable]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code into the proper directory
Expand All @@ -53,8 +53,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust-version: [stable, nightly]
os: [macos-latest]
rust-version: [stable]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code into the proper directory
Expand Down

0 comments on commit 51af88c

Please sign in to comment.