2023-06-08 15:15:56 +02:00
|
|
|
#
|
|
|
|
# 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
|
2023-06-13 14:38:00 +02:00
|
|
|
# 3. https://docs.github.com/en/actions/learn-github-actions/variables
|
|
|
|
# 4. https://github.com/actions/github-script
|
2023-06-08 15:15:56 +02:00
|
|
|
#
|
|
|
|
name: Nightly Build
|
|
|
|
|
|
|
|
on:
|
2023-06-15 08:37:08 +02:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- nightly # Just for test purpose only with the nightly repo
|
|
|
|
# This schedule will run only from the default branch
|
2023-06-08 15:15:56 +02:00
|
|
|
schedule:
|
2023-09-12 15:05:55 +02:00
|
|
|
- cron: '15 0 * * *' # run at 00:15 AM UTC
|
2023-06-08 15:15:56 +02:00
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
jobs:
|
2023-06-13 14:38:00 +02:00
|
|
|
prepare:
|
|
|
|
name: Prepare
|
|
|
|
runs-on: ubuntu-latest
|
2023-06-15 08:37:08 +02:00
|
|
|
# This job is required by the release job, so we should make it run both from Nushell repo and nightly repo
|
|
|
|
# if: github.repository == 'nushell/nightly'
|
2023-06-13 14:38:00 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-09-11 11:54:22 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-06-15 05:11:08 +02:00
|
|
|
if: github.repository == 'nushell/nightly'
|
2023-06-14 06:26:09 +02:00
|
|
|
with:
|
|
|
|
ref: main
|
|
|
|
fetch-depth: 0
|
|
|
|
# Configure PAT here: https://github.com/settings/tokens for the push operation in the following steps
|
|
|
|
token: ${{ secrets.WORKFLOW_TOKEN }}
|
2023-06-13 14:38:00 +02:00
|
|
|
|
|
|
|
- name: Setup Nushell
|
2023-09-12 16:00:58 +02:00
|
|
|
uses: hustcer/setup-nu@v3.6
|
2023-06-15 05:11:08 +02:00
|
|
|
if: github.repository == 'nushell/nightly'
|
2023-06-13 14:38:00 +02:00
|
|
|
with:
|
2023-09-12 16:00:58 +02:00
|
|
|
version: 0.84.0
|
2023-06-13 14:38:00 +02:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
2023-06-15 08:37:08 +02:00
|
|
|
# Synchronize the main branch of nightly repo with the main branch of Nushell official repo
|
2023-06-13 14:38:00 +02:00
|
|
|
- name: Prepare for Nightly Release
|
|
|
|
shell: nu {0}
|
2023-06-15 05:11:08 +02:00
|
|
|
if: github.repository == 'nushell/nightly'
|
2023-06-13 14:38:00 +02:00
|
|
|
run: |
|
|
|
|
cd $env.GITHUB_WORKSPACE
|
|
|
|
git checkout main
|
2023-06-15 08:37:08 +02:00
|
|
|
# We can't push if no user name and email are configured
|
2023-06-14 06:26:09 +02:00
|
|
|
git config user.name 'hustcer'
|
|
|
|
git config user.email 'hustcer@outlook.com'
|
2023-09-12 15:05:55 +02:00
|
|
|
git pull origin main
|
2023-06-14 06:26:09 +02:00
|
|
|
git remote add src https://github.com/nushell/nushell.git
|
|
|
|
git fetch src main
|
2023-06-15 08:37:08 +02:00
|
|
|
# All the changes will be overwritten by the upstream main branch
|
2023-06-14 06:26:09 +02:00
|
|
|
git reset --hard src/main
|
|
|
|
git push origin main -f
|
2023-09-12 15:05:55 +02:00
|
|
|
let sha_short = (git rev-parse --short origin/main | str trim | str substring 0..7)
|
2023-06-14 06:26:09 +02:00
|
|
|
let tag_name = $'nightly-($sha_short)'
|
2023-06-13 14:38:00 +02:00
|
|
|
if (git ls-remote --tags origin $tag_name | is-empty) {
|
2023-06-14 08:02:48 +02:00
|
|
|
git tag -a $tag_name -m $'Nightly build from ($sha_short)'
|
2023-06-13 14:38:00 +02:00
|
|
|
git push origin --tags
|
|
|
|
}
|
|
|
|
|
2023-06-14 08:55:04 +02:00
|
|
|
release:
|
|
|
|
name: Release
|
2023-06-14 06:26:09 +02:00
|
|
|
needs: prepare
|
2023-06-08 15:15:56 +02:00
|
|
|
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
|
2023-06-28 03:15:32 +02:00
|
|
|
target_rustflags: '--exclude=nu-cmd-dataframe'
|
2023-06-08 15:15:56 +02:00
|
|
|
- target: riscv64gc-unknown-linux-gnu
|
|
|
|
os: ubuntu-20.04
|
2023-06-28 03:15:32 +02:00
|
|
|
target_rustflags: '--exclude=nu-cmd-dataframe'
|
2023-06-08 15:15:56 +02:00
|
|
|
|
|
|
|
runs-on: ${{matrix.os}}
|
|
|
|
|
|
|
|
steps:
|
2023-09-11 11:54:22 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-06-14 06:26:09 +02:00
|
|
|
with:
|
|
|
|
ref: main
|
2023-06-08 15:15:56 +02:00
|
|
|
|
|
|
|
- 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
|
2023-06-23 21:53:45 +02:00
|
|
|
with:
|
|
|
|
rustflags: ''
|
2023-06-08 15:15:56 +02:00
|
|
|
|
|
|
|
- name: Setup Nushell
|
2023-09-12 16:00:58 +02:00
|
|
|
uses: hustcer/setup-nu@v3.6
|
2023-06-08 15:15:56 +02:00
|
|
|
with:
|
2023-09-12 16:00:58 +02:00
|
|
|
version: 0.84.0
|
2023-06-08 15:15:56 +02:00
|
|
|
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
|
2023-06-21 16:41:57 +02:00
|
|
|
filename: .github/AUTO_ISSUE_TEMPLATE/nightly-build-fail.md
|
2023-06-13 14:38:00 +02:00
|
|
|
|
|
|
|
- name: Set Outputs of Short SHA
|
|
|
|
id: vars
|
|
|
|
run: |
|
|
|
|
echo "date=$(date -u +'%Y-%m-%d')" >> $GITHUB_OUTPUT
|
2023-06-14 08:55:04 +02:00
|
|
|
sha_short=$(git rev-parse --short HEAD)
|
|
|
|
echo "sha_short=${sha_short:0:7}" >> $GITHUB_OUTPUT
|
2023-06-13 14:38:00 +02:00
|
|
|
|
|
|
|
# REF: https://github.com/marketplace/actions/gh-release
|
|
|
|
# Create a release only in nushell/nightly repo
|
|
|
|
- name: Publish Archive
|
2023-09-12 15:05:55 +02:00
|
|
|
uses: softprops/action-gh-release@v0.1.15
|
2023-06-13 14:38:00 +02:00
|
|
|
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: |
|
2023-06-15 08:37:08 +02:00
|
|
|
This is a NIGHTLY build of Nushell.
|
|
|
|
It is NOT recommended for production use.
|
2023-06-13 14:38:00 +02:00
|
|
|
files: ${{ steps.nu.outputs.archive }}
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-06-14 08:55:04 +02:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
name: Cleanup
|
2023-06-15 08:37:08 +02:00
|
|
|
# Should only run in nushell/nightly repo
|
2023-06-14 08:55:04 +02:00
|
|
|
if: github.repository == 'nushell/nightly'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-06-15 05:11:08 +02:00
|
|
|
# Sleep for 30 minutes, waiting for the release to be published
|
|
|
|
- name: Waiting for Release
|
|
|
|
run: sleep 1800
|
|
|
|
|
2023-09-11 11:54:22 +02:00
|
|
|
- uses: actions/checkout@v4
|
2023-06-15 08:37:08 +02:00
|
|
|
with:
|
|
|
|
ref: main
|
|
|
|
|
2023-06-14 08:55:04 +02:00
|
|
|
- name: Setup Nushell
|
2023-09-12 16:00:58 +02:00
|
|
|
uses: hustcer/setup-nu@v3.6
|
2023-06-14 08:55:04 +02:00
|
|
|
with:
|
2023-09-12 16:00:58 +02:00
|
|
|
version: 0.84.0
|
2023-06-14 08:55:04 +02:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
# Keep the last a few releases
|
|
|
|
- name: Delete Older Releases
|
|
|
|
shell: nu {0}
|
|
|
|
run: |
|
|
|
|
let KEEP_COUNT = 10
|
|
|
|
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
|
|
|
|
}
|