Skip to content

isolate failing workflows #2722

isolate failing workflows

isolate failing workflows #2722

Workflow file for this run

name: CI
on: [push]
jobs:
build-mac-snd:

Check failure on line 5 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 5, Col: 3): The workflow must contain at least one job with no dependencies.
needs: [cache-submodule]
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: make -j3 -C eth-sender
- uses: actions/upload-artifact@v4
with:
name: cj-mac
path: eth-sender/out-mac/x86_64/cj
build-win-snd:
needs: [cache-submodule]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
- run: DEBIAN_FRONTEND=noninteractive sudo -EH apt-get -y install mingw-w64
- run: make -j3 -C eth-sender target=win
- uses: actions/upload-artifact@v4
with:
name: cj-win
path: eth-sender/out-win/x86_64/cj.exe