From 10995933dd7eb2c57312ae45e209c8df770b6f4b Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Thu, 16 May 2024 06:52:22 +0100 Subject: [PATCH] build(forgejo): add push-next job --- .forgejo/workflows/demo.yaml | 6 ---- .forgejo/workflows/push-next.yml | 58 ++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+), 6 deletions(-) delete mode 100644 .forgejo/workflows/demo.yaml create mode 100644 .forgejo/workflows/push-next.yml diff --git a/.forgejo/workflows/demo.yaml b/.forgejo/workflows/demo.yaml deleted file mode 100644 index d585e9d..0000000 --- a/.forgejo/workflows/demo.yaml +++ /dev/null @@ -1,6 +0,0 @@ -on: [push] -jobs: - test: - runs-on: docker - steps: - - run: echo All Good Now diff --git a/.forgejo/workflows/push-next.yml b/.forgejo/workflows/push-next.yml new file mode 100644 index 0000000..e43bc9a --- /dev/null +++ b/.forgejo/workflows/push-next.yml @@ -0,0 +1,58 @@ +name: Rust + +on: + push: + branches: ["next"] + pull_request: + branches: ["main"] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + # can't use git-next-builder until it contains node runtime + runs-on: git-next-builder + # runs-on: docker + + steps: + - name: NodeJS for Actions + run: \ + apt-get update && \ + apt-get install -y nodejs + + # - name: Build Dependencies + # run: | + # apt-get update && \ + # apt-get install -y clang-15 mold && \ + # curl -L https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz -o cargo-binstall.tgz && \ + # tar -xzf cargo-binstall.tgz && \ + # rm cargo-binstall.tgz && \ + # mv cargo-binstall /usr/local/bin/ && \ + # cargo binstall -y cargo-chef && \ + # rustup component add rustfmt clippy + + - name: Checkout + uses: actions/checkout@v4 + + # - name: Toolchain Stable + # uses: https://github.com/actions-rs/toolchain@v1 + # with: + # toolchain: stable + # + # - name: Build + # uses: https://github.com/actions-rs/cargo@v1 + # with: + # command: build + # # args: --release --all-features + # + # - name: Test + # uses: https://github.com/actions-rs/cargo@v1 + # with: + # command: test + + - name: Build + run: cargo build --verbose + + - name: Run tests + run: cargo test --verbose