Skip to content

Commit

Permalink
[CI] Add a basic ci test (#19)
Browse files Browse the repository at this point in the history
This PR includes a workflow that runs ci tests using self-hosted runner.
  • Loading branch information
jc-bytedance authored Apr 2, 2024
1 parent 04574b2 commit 6f26ab3
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: VeScale Unit Tests
on:
push:
branches:
- main
pull_request:

workflow_dispatch:

permissions:
contents: read
pull-requests: read

jobs:

Run-all-tests:

runs-on: [self-hosted, Linux, X64, GPU]

container:
image: ghcr.io/volcengine/vescale:latest

options: --gpus=all --shm-size=400g

steps:
- name: Checkout
uses: actions/checkout@v4
- name: run-test.sh
run: ls && pwd && bash ./scripts/run_test.sh


0 comments on commit 6f26ab3

Please sign in to comment.