Skip to content

isolate failing workflows #2724

isolate failing workflows

isolate failing workflows #2724

Workflow file for this run

name: CI
on: [push]
jobs:
cache-submodule:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule
build-mac-snd:
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