Skip to content

Update kickoff only script #15

Update kickoff only script

Update kickoff only script #15

Workflow file for this run

name: PR Build
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: "recursive"
- name: Download bob
uses: robinraju/release-downloader@v1
with:
repository: "swz-git/bob"
latest: true
fileName: "bob_*_x86_64-unknown-linux-musl.zip"
extract: true
- run: chmod +x bob
- uses: robinraju/release-downloader@v1
id: download_packs
continue-on-error: true
with:
latest: true
fileName: '*.tar.xz'
- uses: robinraju/release-downloader@v1
continue-on-error: true
with:
latest: true
fileName: "buildinfo.toml"
- name: Extract archives
if: ${{ steps.download_packs.outcome == 'success' }}
run: |
mkdir -p bob_build
for file in *.tar.xz; do tar --transform 's|^[^/]*|bob_build|' -xf "$file"; done
mv buildinfo.toml bob_build/
- name: Build
run: ./bob build bob.toml