Set up continuous integration in Forgejo #75
3 changed files with 18 additions and 19 deletions
14
.forgejo/setup-trunk/action.yaml
Normal file
14
.forgejo/setup-trunk/action.yaml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# set up the Trunk web build system
|
||||||
|
#
|
||||||
|
# https://trunkrs.dev
|
||||||
|
#
|
||||||
|
# the `curl` call is based on David Tolnay's `rust-toolchain` action
|
||||||
|
#
|
||||||
|
# https://github.com/dtolnay/rust-toolchain
|
||||||
|
#
|
||||||
|
runs:
|
||||||
|
using: "composite"
|
||||||
|
steps:
|
||||||
glen marked this conversation as resolved
|
|||||||
|
- run: rustup target add wasm32-unknown-unknown
|
||||||
|
- run: curl --output - --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused --location --silent --show-error --fail 'https://github.com/trunk-rs/trunk/releases/download/v0.21.12/trunk-x86_64-unknown-linux-gnu.tar.gz' | tar --gunzip --extract --file -
|
||||||
|
working-directory: /usr/local/cargo/bin
|
|
@ -3,26 +3,17 @@ on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
jobs:
|
jobs:
|
||||||
# build and tag the Docker image that the rest of the jobs will run on
|
|
||||||
setup-image:
|
|
||||||
runs-on: self-hosted
|
|
||||||
defaults:
|
|
||||||
run:
|
|
||||||
working-directory: tools/ci-image
|
|
||||||
steps:
|
|
||||||
- uses: https://code.forgejo.org/actions/checkout@v4
|
|
||||||
- run: docker build . --tag dyna3:ci
|
|
||||||
# build the application, reporting success if there are no errors or warnings
|
# build the application, reporting success if there are no errors or warnings
|
||||||
build:
|
build:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: dyna3:ci
|
image: rust:1.85-bookworm
|
||||||
needs: [setup-image]
|
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
working-directory: app-proto
|
working-directory: app-proto
|
||||||
steps:
|
steps:
|
||||||
- uses: https://code.forgejo.org/actions/checkout@v4
|
- uses: https://code.forgejo.org/actions/checkout@v4
|
||||||
|
- uses: ./.forgejo/setup-trunk
|
||||||
- run: RUSTFLAGS='-D warnings' trunk build
|
- run: RUSTFLAGS='-D warnings' trunk build
|
||||||
|
|
||||||
# run the automated tests, reporting success if the tests pass and were built
|
# run the automated tests, reporting success if the tests pass and were built
|
||||||
|
@ -30,8 +21,7 @@ jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: dyna3:ci
|
image: rust:1.85-bookworm
|
||||||
needs: [setup-image]
|
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
working-directory: app-proto
|
working-directory: app-proto
|
||||||
|
@ -48,8 +38,7 @@ jobs:
|
||||||
run-examples:
|
run-examples:
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: dyna3:ci
|
image: rust:1.85-bookworm
|
||||||
needs: [setup-image]
|
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
working-directory: app-proto
|
working-directory: app-proto
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
FROM rust:1.85-slim-bookworm
|
|
||||||
RUN rustup target add wasm32-unknown-unknown
|
|
||||||
RUN cargo install trunk --jobs 1
|
|
||||||
WORKDIR /home
|
|
Loading…
Add table
Reference in a new issue
Reviewing this is hampered because I have no idea what
using: "composite"
means, and https://forgejo.org/docs/next/user/actions/ sheds no light on this. Can you either explain or point to somewhere that has the information?The documentation of Gitea Actions and Forgejo Actions seems to rely a lot on the principle that these are "similar and mostly compatible to GitHub Actions," despite Forgejo's insistence that "they are not and will never be identical." GitHub's description of composite actions is pretty much what I'd guess from the usage here: