Log files in cache directory #787
This file contains hidden or 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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: [master] | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
permissions: | |
contents: read | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "CI" | |
CI: | |
# The type of runners that the job will run on | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
[ | |
windows-2025, | |
windows-2022, | |
ubuntu-24.04, | |
ubuntu-22.04, | |
ubuntu-24.04-arm, | |
ubuntu-22.04-arm | |
] | |
method: [local, network] | |
runs-on: ${{ matrix.os }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
id: setup-node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- name: Install Dependencies | |
id: npm-ci | |
run: npm ci | |
- name: Check Format | |
id: npm-format-check | |
run: npm run format:check | |
- name: Lint | |
id: npm-lint | |
run: npm run lint | |
- name: Test | |
id: npm-ci-test | |
run: npm run ci-test | |
- name: Bundle | |
id: npm-bundle | |
run: npm run bundle | |
- name: Run the action on this runner with method ${{matrix.method}} | |
uses: ./ | |
with: | |
method: ${{matrix.method}} | |
log-file-suffix: '${{matrix.method}}-${{matrix.os}}' | |
- name: | |
Run the action on this runner with nvcc and libcublas subpackages | |
(Linux) | |
if: runner.os == 'Linux' && matrix.method == 'network' | |
uses: ./ | |
with: | |
method: ${{matrix.method}} | |
sub-packages: '["nvcc"]' | |
non-cuda-sub-packages: '["libcublas"]' | |
log-file-suffix: 'nvcc-libcublas-${{matrix.method}}-${{matrix.os}}' | |
- name: Run the action on this runner with nvcc subpackage only (Windows) | |
if: runner.os == 'Windows' | |
id: test-action | |
uses: ./ | |
with: | |
method: ${{matrix.method}} | |
sub-packages: '["nvcc"]' | |
log-file-suffix: 'nvcc-${{matrix.method}}-${{matrix.os}}' | |
- name: Print output cuda version | |
run: echo "${{ steps.test-action.outputs.cuda }}" | |
- name: Print output CUDA_PATH | |
run: echo "${{ steps.test-action.outputs.CUDA_PATH }}" | |
- name: Test if nvcc is available | |
run: nvcc -V | |
- name: List paths (windows) | |
if: runner.os == 'Windows' | |
shell: powershell | |
run: | | |
ls $env:CUDA_PATH | |
ls $env:CUDA_PATH\bin | |
ls $env:CUDA_PATH\include | |
- name: List paths (linux) | |
if: runner.os == 'Linux' | |
run: | | |
ls $CUDA_PATH | |
ls $CUDA_PATH/bin | |
ls $CUDA_PATH/include |