Merge pull request #1 from royalapplications/versions-include-openssl #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
tags: | |
- '1.*.*' | |
paths-ignore: | |
- '.github/workflows/x-*.yml' | |
workflow_dispatch: # manually-triggered runs | |
permissions: | |
# allowed to create releases (ref. https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs) | |
contents: write | |
concurrency: | |
# cancel pending runs when a PR gets updated (ref. https://github.com/rust-lang/rust/blob/75fd074338801fba74a8cf7f8c48c5c5be362d08/.github/workflows/ci.yml#L35) | |
group: ${{ github.head_ref || github.run_id }}-${{ github.actor }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-14 | |
env: # use tag version, if available, falling back to 1.21.3 (stable) | |
MITKERBEROS_VERSION: "${{ startsWith(github.ref, 'refs/tags/1.') && github.ref_name || '1.21.3_openssl-3.3.1' }}" | |
PUBLISH_RELEASE: "${{ startsWith(github.ref, 'refs/tags/1.') && '1' || '0' }}" | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: restore cache | |
id: cache-mitkerberos-src | |
uses: actions/cache/restore@v4 | |
with: | |
key: "mitkerberos-src-${{ env.MITKERBEROS_VERSION }}" | |
path: | | |
build/mitkerberos-${{ env.MITKERBEROS_VERSION }}.tar.gz | |
- name: build | |
run: scripts/build.sh | |
- name: save cache | |
if: "steps.cache-mitkerberos-src.outputs.cache-hit != 'true'" | |
uses: actions/cache/save@v4 | |
with: | |
key: "${{ steps.cache-mitkerberos-src.outputs.cache-primary-key }}" | |
path: | | |
build/mitkerberos-${{ env.MITKERBEROS_VERSION }}.tar.gz | |
- name: publish native libraries | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "mitkerberos-${{ env.MITKERBEROS_VERSION }}" | |
retention-days: 5 | |
if-no-files-found: "error" | |
path: | | |
build/mitkerberos-${{ env.MITKERBEROS_VERSION }}/macosx/** | |
- name: publish xcframework | |
uses: actions/upload-artifact@v4 | |
with: | |
name: "mitkerberos-${{ env.MITKERBEROS_VERSION }}.xcframework" | |
retention-days: 5 | |
if-no-files-found: "error" | |
path: | | |
build/mitkerberos-${{ env.MITKERBEROS_VERSION }}/MITKerberos.xcframework | |
- name: pack release artifacts | |
if: "success() && env.PUBLISH_RELEASE == '1'" | |
run: scripts/release.sh | |
- name: create release | |
if: "success() && env.PUBLISH_RELEASE == '1'" | |
uses: softprops/action-gh-release@v2 | |
with: | |
name: "${{ env.MITKERBEROS_VERSION }}" | |
draft: true | |
prerelease: false | |
generate_release_notes: false | |
fail_on_unmatched_files: true | |
files: | | |
build/mitkerberos-${{ env.MITKERBEROS_VERSION }}/mitkerberos.tar.gz | |
build/mitkerberos-${{ env.MITKERBEROS_VERSION }}/MITKerberos.xcframework.tar.gz |