From 193a82850926679da02efba6dc44ce0bc9b1946e Mon Sep 17 00:00:00 2001 From: FxQnLr <39925636+FxQnLr@users.noreply.github.com> Date: Sun, 15 Oct 2023 19:03:31 +0200 Subject: Rename test.yml to push.yml --- .github/workflows/push.yml | 58 ++++++++++++++++++++++++++++++++++++++++++++++ .github/workflows/test.yml | 58 ---------------------------------------------- 2 files changed, 58 insertions(+), 58 deletions(-) create mode 100644 .github/workflows/push.yml delete mode 100644 .github/workflows/test.yml (limited to '.github') diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml new file mode 100644 index 0000000..598e5a0 --- /dev/null +++ b/.github/workflows/push.yml @@ -0,0 +1,58 @@ +name: build + +on: + push: + branches: [ "main" ] + workflow_dispatch: + +env: + SCCACHE_GHA_ENABLED: "true" + RUSTC_WRAPPER: "sccache" + SQLX_OFFLINE: "true" + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Run sccache-cache + uses: mozilla-actions/sccache-action@v0.0.3 + + - uses: actions/checkout@v4 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + components: rustfmt, clippy + override: true + + - name: Run cargo check + uses: actions-rs/cargo@v1 + with: + command: check + + - name: Run Clippy + uses: actions-rs/cargo@v1 + with: + command: clippy + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to DockerHub + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Build and push + id: docker_build + uses: docker/build-push-action@v3 + with: + push: true + platforms: linux/amd64,linux/arm64 + cache-from: type=gha + cache-to: type=gha,mode=max + tags: | + ghcr.io/fxqnlr/webol:dev-latest + ghcr.io/fxqnlr/webol:dev-${{ github.run_number }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index 598e5a0..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,58 +0,0 @@ -name: build - -on: - push: - branches: [ "main" ] - workflow_dispatch: - -env: - SCCACHE_GHA_ENABLED: "true" - RUSTC_WRAPPER: "sccache" - SQLX_OFFLINE: "true" - CARGO_TERM_COLOR: always - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Run sccache-cache - uses: mozilla-actions/sccache-action@v0.0.3 - - - uses: actions/checkout@v4 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - components: rustfmt, clippy - override: true - - - name: Run cargo check - uses: actions-rs/cargo@v1 - with: - command: check - - - name: Run Clippy - uses: actions-rs/cargo@v1 - with: - command: clippy - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - name: Login to DockerHub - uses: docker/login-action@v2 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - name: Build and push - id: docker_build - uses: docker/build-push-action@v3 - with: - push: true - platforms: linux/amd64,linux/arm64 - cache-from: type=gha - cache-to: type=gha,mode=max - tags: | - ghcr.io/fxqnlr/webol:dev-latest - ghcr.io/fxqnlr/webol:dev-${{ github.run_number }} -- cgit v1.2.3 From 65cb5d6e762a7cb53f9a95d93ac7237cc8101e0d Mon Sep 17 00:00:00 2001 From: FxQnLr <39925636+FxQnLr@users.noreply.github.com> Date: Sun, 15 Oct 2023 19:05:03 +0200 Subject: Create pull_request.yml --- .github/workflows/pull_request.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/pull_request.yml (limited to '.github') diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml new file mode 100644 index 0000000..40a7490 --- /dev/null +++ b/.github/workflows/pull_request.yml @@ -0,0 +1,36 @@ +name: build + +on: + pull_request: + branches: [ "main" ] + workflow_dispatch: + +env: + SCCACHE_GHA_ENABLED: "true" + RUSTC_WRAPPER: "sccache" + SQLX_OFFLINE: "true" + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Run sccache-cache + uses: mozilla-actions/sccache-action@v0.0.3 + + - uses: actions/checkout@v4 + - uses: actions-rs/toolchain@v1 + with: + toolchain: stable + components: rustfmt, clippy + override: true + + - name: Run cargo check + uses: actions-rs/cargo@v1 + with: + command: check + + - name: Run Clippy + uses: actions-rs/cargo@v1 + with: + command: clippy -- cgit v1.2.3 From 686e694cc335ce7d825ad3561dcc34b456143453 Mon Sep 17 00:00:00 2001 From: FxQnLr <39925636+FxQnLr@users.noreply.github.com> Date: Sun, 15 Oct 2023 19:07:06 +0200 Subject: Update push.yml --- .github/workflows/push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 598e5a0..1afe2d3 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -1,4 +1,4 @@ -name: build +name: build and push on: push: -- cgit v1.2.3 From 435a21ade9c92a458186961e28c5c08e60ad8266 Mon Sep 17 00:00:00 2001 From: FxQnLr <39925636+FxQnLr@users.noreply.github.com> Date: Sun, 15 Oct 2023 19:08:23 +0200 Subject: Update pull_request.yml --- .github/workflows/pull_request.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 40a7490..4466d7c 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -1,4 +1,4 @@ -name: build +name: check on: pull_request: @@ -25,12 +25,17 @@ jobs: components: rustfmt, clippy override: true - - name: Run cargo check + - name: run cargo check uses: actions-rs/cargo@v1 with: command: check - - name: Run Clippy + - name: run clippy uses: actions-rs/cargo@v1 with: command: clippy + + - name: run test + uses: actions-rs/cargo@v1 + with: + command: test -- cgit v1.2.3