mirror of
https://github.com/daylinmorgan/tsm.git
synced 2024-11-16 09:18:32 -06:00
ci: reuse ftw
This commit is contained in:
parent
6b2aa47269
commit
eab26024a9
3 changed files with 12 additions and 86 deletions
28
.github/workflows/build.yml
vendored
28
.github/workflows/build.yml
vendored
|
@ -1,33 +1,9 @@
|
|||
name: ⚙️ Build Binaries
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
workflow_call:
|
||||
|
||||
jobs:
|
||||
build-artifact:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- uses: jiro4989/setup-nim-action@v1
|
||||
with:
|
||||
nim-version: 2.0.0
|
||||
|
||||
# for cross compilation with ccnz
|
||||
- uses: goto-bus-stop/setup-zig@v2
|
||||
|
||||
- name: Generate build artifacts
|
||||
run: |
|
||||
nimble install -Y forge
|
||||
nimble release
|
||||
|
||||
- name: Create artifact bundles
|
||||
run: nimble bundle
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: artifacts
|
||||
path: |
|
||||
dist/*.tar.gz
|
||||
dist/*.zip
|
||||
|
||||
uses: daylinmorgan/actions/.github/workflows/build-nim-forge.yml@main
|
||||
|
|
50
.github/workflows/nightly.yml
vendored
50
.github/workflows/nightly.yml
vendored
|
@ -10,51 +10,15 @@ permissions:
|
|||
|
||||
jobs:
|
||||
check-commits:
|
||||
runs-on: ubuntu-latest
|
||||
name: Check latest commit
|
||||
outputs:
|
||||
quit: ${{ steps.should_run.outputs.quit }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: print latest commit
|
||||
run: echo ${{ github.sha }}
|
||||
|
||||
- name: check latest commit is less than a day
|
||||
if: ${{ github.event_name == 'schedule' }}
|
||||
run: |
|
||||
if [[ -n "$(git rev-list --since='24 hours' HEAD)" ]]; then
|
||||
echo "quit=true" >> "$GITHUB_OUTPUT"
|
||||
fi
|
||||
uses: daylinmorgan/actions/.github/workflows/check-commits.yml@main
|
||||
with:
|
||||
since: "24 hours"
|
||||
|
||||
build-artifacts:
|
||||
needs: check-commits
|
||||
if: ${{ needs.check-commits.outputs.quit != 'true' }}
|
||||
uses: ./.github/workflows/build.yml
|
||||
|
||||
create-release:
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
needs:
|
||||
- build-artifacts
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Download Build Artifacts
|
||||
uses: actions/download-artifact@v3
|
||||
|
||||
- run: ls -R artifacts
|
||||
|
||||
- name: Remove Old Nightly Release
|
||||
run: |
|
||||
gh release delete nightly --yes || true
|
||||
git push origin :nightly || true
|
||||
|
||||
- name: Generate New Nightly Release
|
||||
run: |
|
||||
gh release create nightly \
|
||||
--title "Nightly Release (Pre-release)" \
|
||||
--prerelease \
|
||||
./artifacts/*
|
||||
uses: daylinmorgan/actions/.github/workflows/build-nim-forge.yml@main
|
||||
|
||||
generate-release:
|
||||
needs: build-artifacts
|
||||
uses: daylinmorgan/actions/.github/workflows/nightly.yml@main
|
||||
|
|
20
.github/workflows/release.yml
vendored
20
.github/workflows/release.yml
vendored
|
@ -10,22 +10,8 @@ permissions:
|
|||
|
||||
jobs:
|
||||
build-artifacts:
|
||||
uses: ./.github/workflows/build.yml
|
||||
uses: daylinmorgan/actions/.github/workflows/build-nim-forge.yml@main
|
||||
|
||||
create-release:
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- build-artifacts
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Download Build Artifacts
|
||||
uses: actions/download-artifact@v3
|
||||
|
||||
- run: ls -R artifacts/
|
||||
|
||||
- name: Generate New Nightly Release
|
||||
run: |
|
||||
gh release create ${{ github.ref }} ./artifacts/*
|
||||
needs: build-artifacts
|
||||
uses: daylinmorgan/actions/.github/workflows/release.yml@main
|
||||
|
|
Loading…
Reference in a new issue