build-cross test #13
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: Cedar-agent cross-build and Docker Build | |
on: push | |
# release: | |
# types: [published] | |
env: | |
# The project name specified in Cargo.toml | |
PROJECT_NAME: cedar-agent | |
jobs: | |
build-cross-package: | |
# Set the job to run on the platform specified by the matrix below | |
runs-on: ${{ matrix.runner }} | |
# Define the build matrix for cross-compilation | |
strategy: | |
matrix: | |
include: | |
- name: linux-amd64 | |
runner: ubuntu-latest | |
target: x86_64-unknown-linux-gnu | |
# ------- Lets keep this commented out for now for future optional use | |
# - name: win-amd64 | |
# runner: windows-latest | |
# target: x86_64-pc-windows-msvc | |
# - name: macos-amd64 | |
# runner: macos-latest | |
# target: x86_64-apple-darwin | |
- name: macos-arm64 | |
runner: macos-latest | |
target: aarch64-apple-darwin | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: "${{ matrix.target }}" | |
- name: Setup Cache | |
uses: Swatinem/rust-cache@v2 | |
- name: Update Cargo.toml version | |
run: | | |
#sed -i '/\[package\]/,/^version = /s/^version = .*/version = \"${{ github.event.release.tag_name }}\"/' Cargo.toml | |
sed -i '/\[package\]/,/^version = /s/^version = .*/version = \"0.2.1\"/' Cargo.toml | |
cat Cargo.toml | |
- name: Build Binary | |
run: cargo build --verbose --release --target ${{ matrix.target }} # --locked have been removed to avoid error | |
- name: Dry run cargo publish | |
run: cargo publish --dry-run --allow-dirty --target ${{ matrix.target }} | |
- uses: taiki-e/upload-rust-binary-action@v1 | |
with: | |
bin: cedar-agent-${{ github.event.release.tag_name }} | |
token: ${{ secrets.TOKEN_GITHUB }} | |
# - name: Publish package to crates.io | |
# run: cargo publish --token ${CRATES_TOKEN} | |
# env: | |
# CRATES_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
# docker-build-push: | |
# runs-on: ubuntu-latest | |
# timeout-minutes: 70 | |
# needs: build-cross-package | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v3 | |
# - name: Set up QEMU | |
# uses: docker/setup-qemu-action@v3 | |
# - name: Set up Docker Buildx | |
# uses: docker/setup-buildx-action@v3 | |
# - name: Login to DockerHub | |
# uses: docker/login-action@v3 | |
# with: | |
# username: ${{ secrets.DOCKERHUB_USERNAME }} | |
# password: ${{ secrets.DOCKERHUB_TOKEN }} | |
# - name: Build & Push cedar-agent | |
# uses: docker/build-push-action@v4 | |
# with: | |
# file: Dockerfile | |
# platforms: linux/amd64,linux/arm64 | |
# push: true | |
# cache-from: type=registry,ref=permitio/cedar-agent:latest | |
# cache-to: type=inline | |
# tags: | | |
# permitio/cedar-agent:latest | |
# permitio/cedar-agent:${{ github.event.release.tag_name }} |