ci: 🚩 remove macos aarch64 due to costs

This commit is contained in:
daimond113 2024-03-28 13:47:52 +01:00
parent 47a83b5ed9
commit e829cd8143
No known key found for this signature in database
GPG key ID: 3A8ECE51328B513C

View file

@ -4,43 +4,50 @@ on:
tags: tags:
- v* - v*
jobs: jobs:
# Better to check first, runners other than ubuntu-latest take up more free minutes
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check
run: cargo check --all-features --locked
build: build:
needs: [check]
strategy: strategy:
matrix: matrix:
include: include:
- os: ubuntu-latest - os: ubuntu-latest
host: linux host: linux
label: linux-x86_64 arch: x86_64
target: x86_64-unknown-linux-gnu target: x86_64-unknown-linux-gnu
- os: windows-latest - os: windows-latest
host: windows host: windows
label: windows-x86_64 arch: x86_64
target: x86_64-pc-windows-msvc target: x86_64-pc-windows-msvc
- os: macos-latest - os: macos-latest
host: macos host: macos
label: macos-x86_64 arch: x86_64
target: x86_64-apple-darwin target: x86_64-apple-darwin
- os: macos-latest-xlarge # not included in free minutes
host: macos # TODO: find a replacement (can't cross compile for aarch64 on x86_64 due to OpenSSL)
label: macos-aarch64 # - os: macos-latest-xlarge
target: aarch64-apple-darwin # host: macos
# arch: aarch64
# target: aarch64-apple-darwin
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
name: Build for ${{ matrix.label }} name: Build for ${{ matrix.host }}-${{ matrix.arch }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Set up Rust
uses: moonrepo/setup-rust@v1
with:
targets: ${{ matrix.target }}
- name: Set env - name: Set env
shell: bash shell: bash
run: | run: |
BIN_NAME=pesde BIN_NAME=pesde
ARCHIVE_NAME=$BIN_NAME-$(echo ${{ github.ref_name }} | cut -c 2-)-${{ matrix.label }}.zip ARCHIVE_NAME=$BIN_NAME-$(echo ${{ github.ref_name }} | cut -c 2-)-${{ matrix.host }}-${{ matrix.arch }}.zip
echo "BIN_NAME=$BIN_NAME" >> $GITHUB_ENV echo "BIN_NAME=$BIN_NAME" >> $GITHUB_ENV
echo "ARCHIVE_NAME=$ARCHIVE_NAME" >> $GITHUB_ENV echo "ARCHIVE_NAME=$ARCHIVE_NAME" >> $GITHUB_ENV
@ -65,13 +72,22 @@ jobs:
name: ${{ env.ARCHIVE_NAME }} name: ${{ env.ARCHIVE_NAME }}
path: ${{ env.ARCHIVE_NAME }} path: ${{ env.ARCHIVE_NAME }}
publish:
name: Publish to crates.io
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v4
- name: Publish
run: cargo publish --token ${{ secrets.CRATES_IO_TOKEN }} --allow-dirty --locked
create_release: create_release:
name: Create Release name: Create Release
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
contents: write contents: write
pull-requests: read pull-requests: read
needs: [build] needs: [build, publish]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
@ -101,7 +117,4 @@ jobs:
body: ${{ steps.git-cliff.outputs.content }} body: ${{ steps.git-cliff.outputs.content }}
draft: true draft: true
prerelease: false prerelease: false
files: artifacts/* files: artifacts/*
- name: Publish on crates.io
run: cargo publish --token ${{ secrets.CRATES_IO_TOKEN }} --allow-dirty --locked