Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
115 changes: 0 additions & 115 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,118 +52,3 @@ jobs:

- name: Run cargo clippy
run: cargo clippy --all-targets --all-features

release:
runs-on: macos-latest
needs:
- test
- lints
- check
outputs:
new_version: ${{ steps.check_for_version_changes.outputs.new_version }}
changed: ${{ steps.check_for_version_changes.outputs.changed }}
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
with:
# https://stackoverflow.com/questions/65944700/how-to-run-git-diff-in-github-actions
# TLDR – By default this action fetches no history.
# We need a bit of history to be able to check if we've recently updated the version in Cargo.toml
fetch-depth: 2
- name: Toolchain info
run: |
cargo --version --verbose
rustc --version
cargo clippy --version
- name: Build
run: cargo build --release --target aarch64-apple-darwin --target x86_64-apple-darwin
- name: Check for version changes in Cargo.toml
id: check_for_version_changes
run: |
# When there are no changes, VERSION_CHANGES will be empty
# Without the echo, this command would exit with a 1, causing the GitHub Action to fail
# Instead, we want it to succeed, but just evaluate `changed=false` in the other branch of the conditional
VERSION_CHANGES=$(git diff HEAD~1 HEAD Cargo.toml | grep "\+version" || echo "")
if [[ -n $VERSION_CHANGES ]]; then
NEW_VERSION=$(echo $VERSION_CHANGES | awk -F'"' '{print $2}')
echo "changed=true" >> $GITHUB_OUTPUT
echo "new_version=v$NEW_VERSION" >> $GITHUB_OUTPUT
else
echo "changed=false" >> $GITHUB_OUTPUT
fi

- name: Create GitHub Release if current commit has updated the version in Cargo.toml
if: steps.check_for_version_changes.outputs.changed == 'true'
run: |
gh release create ${{steps.check_for_version_changes.outputs.new_version}} --target "${{ github.sha }}" --generate-notes
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
upload-mac-universal-bin:
needs: release
runs-on: macos-latest
if: ${{needs.release.outputs.new_version}}
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --release --target aarch64-apple-darwin --target x86_64-apple-darwin

- name: Upload mac universal binary
run: |
# This combines the intel and m1 binaries into a single binary
lipo -create -output target/pks target/aarch64-apple-darwin/release/pks target/x86_64-apple-darwin/release/pks

# Creates artifact for homebrew. -C means run from `target` directory
tar -czf target/pks-mac.tar.gz -C target pks

# This tarball is a binary that is executable
gh release upload $NEW_VERSION target/pks-mac.tar.gz

env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NEW_VERSION: ${{ needs.release.outputs.new_version }}

upload-linux-bin:
needs: release
if: ${{needs.release.outputs.new_version}}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update local toolchain
run: |
cargo install cross
- name: Build linux binaries
run: |
cross build --release --target x86_64-unknown-linux-gnu
cross build --release --target aarch64-unknown-linux-gnu
- name: Upload linux binaries
run: |
tar -czf target/x86_64-unknown-linux-gnu.tar.gz -C target/x86_64-unknown-linux-gnu/release pks
tar -czf target/aarch64-unknown-linux-gnu.tar.gz -C target/aarch64-unknown-linux-gnu/release pks
gh release upload $NEW_VERSION target/x86_64-unknown-linux-gnu.tar.gz
gh release upload $NEW_VERSION target/aarch64-unknown-linux-gnu.tar.gz
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NEW_VERSION: ${{ needs.release.outputs.new_version }}

generate-dotslash-files:
name: Generating and uploading DotSlash files
needs:
- release
- upload-linux-bin
- upload-mac-universal-bin
if: success() && ${{needs.release.outputs.new_version}}
runs-on: ubuntu-latest

steps:
- uses: facebook/dotslash-publish-release@v1
# This is necessary because the action uses
# `gh release upload` to publish the generated DotSlash file(s)
# as part of the release.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Additional file that lives in your repo that defines
# how your DotSlash file(s) should be generated.
config: .github/workflows/dotslash-config.json
# Tag for the release to target.
tag: ${{ needs.release.outputs.new_version }}
16 changes: 8 additions & 8 deletions .github/workflows/dotslash-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@
"pks": {
"platforms": {
"macos-x86_64": {
"regex": "^pks-mac",
"regex": "^pks-x86_64-apple-darwin",
"path": "pks",
"format": "tar.gz"
"format": "tar.xz"
},
"macos-aarch64": {
"regex": "^pks-mac",
"regex": "^pks-aarch64-apple-darwin",
"path": "pks",
"format": "tar.gz"
"format": "tar.xz"
},
"linux-x86_64": {
"regex": "^x86_64-unknown-linux",
"regex": "^pks-x86_64-unknown-linux-gnu",
"path": "pks",
"format": "tar.gz"
"format": "tar.xz"
},
"linux-aarch64": {
"regex": "^aarch64-unknown-linux",
"regex": "^pks-aarch64-unknown-linux-gnu",
"path": "pks",
"format": "tar.gz"
"format": "tar.xz"
}
}
}
Expand Down
Loading