mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
f438ffc6e4
<!-- if this PR closes one or more issues, you can automatically link the PR with them by using one of the [*linking keywords*](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword), e.g. - this PR should close #xxxx - fixes #xxxx you can also mention related issues, PRs or discussions! --> # Description Fix removal of old nightly releases
192 lines
6.0 KiB
YAML
192 lines
6.0 KiB
YAML
#
|
|
# REF:
|
|
# 1. https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategymatrixinclude
|
|
# 2. https://github.com/JasonEtco/create-an-issue
|
|
# 3. https://docs.github.com/en/actions/learn-github-actions/variables
|
|
# 4. https://github.com/actions/github-script
|
|
#
|
|
name: Nightly Build
|
|
|
|
on:
|
|
# push:
|
|
# branches:
|
|
# - main
|
|
schedule:
|
|
- cron: '0 3 * * *' # run at 3 AM UTC
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
prepare:
|
|
name: Prepare
|
|
if: github.repository == 'nushell/nightly'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set Outputs of Short SHA
|
|
id: vars
|
|
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
|
|
|
- name: Setup Nushell
|
|
uses: hustcer/setup-nu@v3
|
|
with:
|
|
version: 0.79.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Prepare for Nightly Release
|
|
shell: nu {0}
|
|
run: |
|
|
cd $env.GITHUB_WORKSPACE
|
|
git checkout main
|
|
git config --global user.name 'hustcer'
|
|
git config --global user.email 'hustcer@outlook.com'
|
|
let tag_name = 'nightly-${{ steps.vars.outputs.sha_short }}'
|
|
git fetch origin -p
|
|
if (git ls-remote --tags origin $tag_name | is-empty) {
|
|
git tag -a $tag_name -m $'Nightly build from ($env.GITHUB_SHA)'
|
|
git push origin --tags
|
|
}
|
|
|
|
# Keep the last a few releases
|
|
# Should only run in nushell/nightly repo
|
|
- name: Delete Older Releases
|
|
shell: nu {0}
|
|
run: |
|
|
let KEEP_COUNT = 7
|
|
let deprecated = (http get https://api.github.com/repos/nushell/nightly/releases | sort-by -r created_at | select tag_name id | range $KEEP_COUNT..)
|
|
for release in $deprecated {
|
|
print $'Deleting tag ($release.tag_name)'
|
|
git push origin --delete $release.tag_name
|
|
print $'Deleting release ($release.tag_name)'
|
|
let delete_url = $'https://api.github.com/repos/nushell/nightly/releases/($release.id)'
|
|
let version = "X-GitHub-Api-Version: 2022-11-28"
|
|
let accept = "Accept: application/vnd.github+json"
|
|
let auth = "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}"
|
|
# http delete $delete_url -H $version -H $auth -H $accept
|
|
curl -L -X DELETE -H $accept -H $auth -H $version $delete_url
|
|
}
|
|
|
|
all:
|
|
name: All
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
target:
|
|
- aarch64-apple-darwin
|
|
- x86_64-apple-darwin
|
|
- x86_64-pc-windows-msvc
|
|
- aarch64-pc-windows-msvc
|
|
- x86_64-unknown-linux-gnu
|
|
- x86_64-unknown-linux-musl
|
|
- aarch64-unknown-linux-gnu
|
|
- armv7-unknown-linux-gnueabihf
|
|
- riscv64gc-unknown-linux-gnu
|
|
extra: ['bin']
|
|
include:
|
|
- target: aarch64-apple-darwin
|
|
os: macos-latest
|
|
target_rustflags: ''
|
|
- target: x86_64-apple-darwin
|
|
os: macos-latest
|
|
target_rustflags: ''
|
|
- target: x86_64-pc-windows-msvc
|
|
extra: 'bin'
|
|
os: windows-latest
|
|
target_rustflags: ''
|
|
- target: x86_64-pc-windows-msvc
|
|
extra: msi
|
|
os: windows-latest
|
|
target_rustflags: ''
|
|
- target: aarch64-pc-windows-msvc
|
|
extra: 'bin'
|
|
os: windows-latest
|
|
target_rustflags: ''
|
|
- target: aarch64-pc-windows-msvc
|
|
extra: msi
|
|
os: windows-latest
|
|
target_rustflags: ''
|
|
- target: x86_64-unknown-linux-gnu
|
|
os: ubuntu-20.04
|
|
target_rustflags: ''
|
|
- target: x86_64-unknown-linux-musl
|
|
os: ubuntu-20.04
|
|
target_rustflags: ''
|
|
- target: aarch64-unknown-linux-gnu
|
|
os: ubuntu-20.04
|
|
target_rustflags: ''
|
|
- target: armv7-unknown-linux-gnueabihf
|
|
os: ubuntu-20.04
|
|
target_rustflags: ''
|
|
- target: riscv64gc-unknown-linux-gnu
|
|
os: ubuntu-20.04
|
|
target_rustflags: ''
|
|
|
|
runs-on: ${{matrix.os}}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Update Rust Toolchain Target
|
|
run: |
|
|
echo "targets = ['${{matrix.target}}']" >> rust-toolchain.toml
|
|
|
|
- name: Setup Rust toolchain and cache
|
|
uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
|
|
|
|
- name: Setup Nushell
|
|
uses: hustcer/setup-nu@v3
|
|
with:
|
|
version: 0.79.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Release Nu Binary
|
|
id: nu
|
|
run: nu .github/workflows/release-pkg.nu
|
|
env:
|
|
OS: ${{ matrix.os }}
|
|
REF: ${{ github.ref }}
|
|
TARGET: ${{ matrix.target }}
|
|
_EXTRA_: ${{ matrix.extra }}
|
|
TARGET_RUSTFLAGS: ${{ matrix.target_rustflags }}
|
|
|
|
- name: Create an Issue for Release Failure
|
|
if: ${{ failure() }}
|
|
uses: JasonEtco/create-an-issue@v2.9.1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
update_existing: true
|
|
search_existing: open
|
|
filename: .github/ISSUE_TEMPLATE/nightly-build-fail.md
|
|
|
|
- name: Set Outputs of Short SHA
|
|
id: vars
|
|
run: |
|
|
echo "date=$(date -u +'%Y-%m-%d')" >> $GITHUB_OUTPUT
|
|
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
|
|
|
|
# REF: https://github.com/marketplace/actions/gh-release
|
|
# Create a release only in nushell/nightly repo
|
|
- name: Publish Archive
|
|
uses: softprops/action-gh-release@v0.1.13
|
|
if: ${{ startsWith(github.repository, 'nushell/nightly') }}
|
|
with:
|
|
draft: false
|
|
prerelease: true
|
|
name: Nu-nightly-${{ steps.vars.outputs.date }}-${{ steps.vars.outputs.sha_short }}
|
|
tag_name: nightly-${{ steps.vars.outputs.sha_short }}
|
|
body: |
|
|
This is a nightly build of Nushell.
|
|
It is not recommended for production use.
|
|
release from ${{ github.sha }}
|
|
files: ${{ steps.nu.outputs.archive }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|