Skip to content

Commit

Permalink
debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelScofield committed Jan 29, 2024
1 parent 7d6baff commit f1fd58e
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,27 @@ jobs:
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/build-greptime-binary
- uses: arduino/setup-protoc@v1
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
- uses: Swatinem/rust-cache@v2
- name: Build greptime binaries
shell: bash
run: cargo build
- name: Pack greptime binaries
shell: bash
run: |
mkdir bins && \
mv ./target/debug/greptime bins && \
mv ./target/debug/sqlness-runner bins
- name: Print greptime binaries info
run: ls -lh bins
- name: Upload artifacts
uses: ./.github/actions/upload-artifacts
with:
base-image: ubuntu
features: ''
artifacts-dir: bins
version: current
- name: Print bins info
run: ls -lh ./bins

sqlness:
name: Sqlness Test
Expand All @@ -102,7 +115,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04-8-cores ]
os: [ ubuntu-20.04 ]
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit f1fd58e

Please sign in to comment.