Set up continuous integration in Forgejo #75
1 changed files with 9 additions and 1 deletions
|
@ -10,5 +10,13 @@ runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
glen marked this conversation as resolved
|
|||||||
- run: rustup target add wasm32-unknown-unknown
|
- run: rustup target add wasm32-unknown-unknown
|
||||||
|
# Forgejo Runner seems to modify the HOME variable when it's running a job
|
||||||
|
# in a Docker container, so we have to find the home directory another way,
|
||||||
|
# inspired by this StackOverflow answer:
|
||||||
|
#
|
||||||
|
# https://unix.stackexchange.com/a/247582
|
||||||
|
#
|
||||||
|
- id: find-home
|
||||||
|
run: eval echo "home=~$(whoami)" >> $GITHUB_OUTPUT
|
||||||
- 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 -
|
- 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: /home/circleci/.cargo/bin
|
working-directory: ${{ steps.find-home.outputs.home }}/.cargo/bin
|
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: