Skip to content

Commit

Permalink
Add plane2 workflows to main (#484)
Browse files Browse the repository at this point in the history
* Add plane2 workflows to main

* fix
  • Loading branch information
paulgb committed Dec 14, 2023
1 parent b2ef9cd commit 5ceac5a
Show file tree
Hide file tree
Showing 4 changed files with 131 additions and 0 deletions.
66 changes: 66 additions & 0 deletions .github/workflows/plane2-build-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Build Docker Image

on:
push:
branches: [ "plane2-preview" ]
# tags: [ 'v*.*.*' ]
paths-ignore: [ "/docs" ]

pull_request:
branches: [ "plane2-preview" ]
paths:
# Unless the Dockerfile itself has changed, testing whether a build passes
# on a PR doesn’t tell us much that faster CI/CD workflows don’t already.
- '.github/workflows/build-image.yml'
- 'docker/Dockerfile'

env:
IMAGE_NAME: plane/plane-preview

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Depot
uses: depot/setup-action@v1

- name: Setup Docker buildx
uses: docker/setup-buildx-action@v2

- name: Log into registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.IMAGE_NAME }}
tags: |
type=sha,enable=true,priority=100,prefix=sha-,suffix=,format=short
type=semver,pattern={{version}}
type=raw,value=latest
- name: Build and push Docker image
id: build-and-push
uses: depot/build-push-action@v1
with:
context: "."
file: "docker/Dockerfile"
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'drifting-in-space/plane' && 'linux/amd64' || 'linux/amd64,linux/arm64' }}
buildx-fallback: true
project: 58j0517pw2
15 changes: 15 additions & 0 deletions .github/workflows/plane2-clippy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on:
pull_request:
branches: [ "plane2-preview" ]

name: Clippy check
jobs:
check-rust-clippy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
18 changes: 18 additions & 0 deletions .github/workflows/plane2-rustfmt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check Rust formatting

on:
pull_request:
branches: [ "plane2-preview" ]

jobs:
check-rust-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
- name: Check format
run: cargo fmt -- --check
32 changes: 32 additions & 0 deletions .github/workflows/plane2-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Tests

on:
push:
branches: [ plane2-preview ]
pull_request:
branches: [ plane2-preview ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest-16-cores

steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true

- name: Install cargo-nextest
run: curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin

- name: Run tests
run: cargo nextest run

- uses: actions/upload-artifact@v3
if: always()
with:
name: test-scratch
path: test-scratch

0 comments on commit 5ceac5a

Please sign in to comment.