2021-11-21 16:55:21 -08:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '*'
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
jobs:
|
2022-11-02 17:57:38 -07:00
|
|
|
release:
|
2021-11-21 16:55:21 -08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
target:
|
2022-03-22 20:34:50 -07:00
|
|
|
- aarch64-apple-darwin
|
2021-11-27 01:01:41 -08:00
|
|
|
- aarch64-unknown-linux-musl
|
2023-10-30 10:22:51 -07:00
|
|
|
- arm-unknown-linux-musleabihf
|
2021-11-27 01:01:41 -08:00
|
|
|
- armv7-unknown-linux-musleabihf
|
2021-11-21 16:55:21 -08:00
|
|
|
- x86_64-apple-darwin
|
|
|
|
- x86_64-pc-windows-msvc
|
2024-05-27 20:00:45 -07:00
|
|
|
- aarch64-pc-windows-msvc
|
2021-11-21 16:55:21 -08:00
|
|
|
- x86_64-unknown-linux-musl
|
|
|
|
include:
|
2022-03-22 20:34:50 -07:00
|
|
|
- target: aarch64-apple-darwin
|
|
|
|
os: macos-latest
|
|
|
|
target_rustflags: ''
|
2021-11-27 01:01:41 -08:00
|
|
|
- target: aarch64-unknown-linux-musl
|
2021-11-21 16:55:21 -08:00
|
|
|
os: ubuntu-latest
|
|
|
|
target_rustflags: '--codegen linker=aarch64-linux-gnu-gcc'
|
2023-10-30 10:22:51 -07:00
|
|
|
- target: arm-unknown-linux-musleabihf
|
|
|
|
os: ubuntu-latest
|
|
|
|
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc'
|
2021-11-27 01:01:41 -08:00
|
|
|
- target: armv7-unknown-linux-musleabihf
|
2021-11-21 16:55:21 -08:00
|
|
|
os: ubuntu-latest
|
|
|
|
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc'
|
|
|
|
- target: x86_64-apple-darwin
|
|
|
|
os: macos-latest
|
|
|
|
target_rustflags: ''
|
|
|
|
- target: x86_64-pc-windows-msvc
|
2022-03-22 20:26:55 -07:00
|
|
|
os: windows-latest
|
2024-05-27 20:00:45 -07:00
|
|
|
- target: aarch64-pc-windows-msvc
|
|
|
|
os: windows-latest
|
2021-11-21 16:55:21 -08:00
|
|
|
target_rustflags: ''
|
|
|
|
- target: x86_64-unknown-linux-musl
|
|
|
|
os: ubuntu-latest
|
|
|
|
target_rustflags: ''
|
|
|
|
|
|
|
|
runs-on: ${{matrix.os}}
|
|
|
|
|
|
|
|
steps:
|
2024-01-24 15:19:35 -08:00
|
|
|
- uses: actions/checkout@v4
|
2021-11-21 16:55:21 -08:00
|
|
|
|
|
|
|
- name: Install AArch64 Toolchain
|
2021-11-27 01:01:41 -08:00
|
|
|
if: ${{ matrix.target == 'aarch64-unknown-linux-musl' }}
|
2021-11-21 16:55:21 -08:00
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
2024-03-08 11:43:36 -08:00
|
|
|
sudo apt-get install gcc-aarch64-linux-gnu libc6-dev-i386
|
2021-11-21 16:55:21 -08:00
|
|
|
|
2023-10-30 10:22:51 -07:00
|
|
|
- name: Install ARM Toolchain
|
|
|
|
if: ${{ matrix.target == 'arm-unknown-linux-musleabihf' || matrix.target == 'armv7-unknown-linux-musleabihf' }}
|
2021-11-21 16:55:21 -08:00
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install gcc-arm-linux-gnueabihf
|
|
|
|
|
2024-05-27 20:00:45 -07:00
|
|
|
- name: Install AArch64 Toolchain (Windows)
|
|
|
|
if: ${{ matrix.target == 'aarch64-pc-windows-msvc' }}
|
|
|
|
run: |
|
|
|
|
rustup target add aarch64-pc-windows-msvc
|
|
|
|
|
2021-11-21 16:55:21 -08:00
|
|
|
- name: Ref Type
|
|
|
|
id: ref-type
|
2024-01-24 15:37:26 -08:00
|
|
|
run: cargo run --package ref-type -- --reference ${{ github.ref }} >> $GITHUB_OUTPUT
|
2021-11-21 16:55:21 -08:00
|
|
|
|
2024-06-05 12:17:05 -07:00
|
|
|
- name: Generate Completion Scripts and Manpage
|
2024-06-01 16:26:41 -07:00
|
|
|
run: |
|
|
|
|
set -euxo pipefail
|
|
|
|
cargo build
|
2024-06-08 14:56:21 -07:00
|
|
|
mkdir -p completions
|
|
|
|
for shell in bash elvish fish nu powershell zsh; do
|
2024-06-01 16:26:41 -07:00
|
|
|
./target/debug/just --completions $shell > completions/just.$shell
|
|
|
|
done
|
2024-06-05 12:17:05 -07:00
|
|
|
mkdir -p man
|
2024-06-05 12:35:06 -07:00
|
|
|
./target/debug/just --man > man/just.1
|
2024-06-01 16:26:41 -07:00
|
|
|
|
2021-11-21 16:55:21 -08:00
|
|
|
- name: Package
|
|
|
|
id: package
|
|
|
|
env:
|
|
|
|
TARGET: ${{ matrix.target }}
|
|
|
|
REF: ${{ github.ref }}
|
|
|
|
OS: ${{ matrix.os }}
|
|
|
|
TARGET_RUSTFLAGS: ${{ matrix.target_rustflags }}
|
|
|
|
run: ./bin/package
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Publish Archive
|
2024-06-24 12:42:39 -07:00
|
|
|
uses: softprops/action-gh-release@v2.0.6
|
2021-11-21 16:55:21 -08:00
|
|
|
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
|
|
|
with:
|
|
|
|
draft: false
|
|
|
|
files: ${{ steps.package.outputs.archive }}
|
|
|
|
prerelease: ${{ steps.ref-type.outputs.value != 'release' }}
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
|
|
|
|
- name: Publish Changelog
|
2024-06-24 12:42:39 -07:00
|
|
|
uses: softprops/action-gh-release@v2.0.6
|
2021-11-21 16:55:21 -08:00
|
|
|
if: >-
|
|
|
|
${{
|
|
|
|
startsWith(github.ref, 'refs/tags/')
|
|
|
|
&& matrix.target == 'x86_64-unknown-linux-musl'
|
|
|
|
}}
|
|
|
|
with:
|
|
|
|
draft: false
|
|
|
|
files: CHANGELOG.md
|
|
|
|
prerelease: ${{ steps.ref-type.outputs.value != 'release' }}
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|