Skip to content

no need to build rocksdb #7

no need to build rocksdb

no need to build rocksdb #7

Workflow file for this run

name: Build
on:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-upload:

Check failure on line 13 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 13, Col: 3): The workflow must contain at least one job with no dependencies.
name: Build and Upload
needs: define-matrix
strategy:
matrix:
os: [linux, macos]
runs-on: ${{ fromJSON('{"linux":["self-hosted","linux"],"macos":"macos-15"}')[matrix.os] }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build msquic
run: ./scripts/msquic.sh
- name: Compress build output
run: |
ls -lhR build
tar czf ${{ matrix.os }}-build.tar.gz build/
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-build
path: ${{ matrix.os }}-build.tar.gz
retention-days: 1