more stuff for the image
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 4m29s Details

This commit is contained in:
Martyn Ranyard 2023-11-07 14:00:15 +01:00
parent e6611a2969
commit e5703c6679
No known key found for this signature in database
1 changed files with 0 additions and 28 deletions

View File

@ -11,39 +11,11 @@ jobs:
- run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!"
- run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
- name: Install jq
uses: dcarbone/install-jq-action@v2.0.2
- name: Install gotempl
run: |
mkdir -p $HOME/bin
wget -O $HOME/bin/gotempl https://github.com/link-society/gotempl/releases/download/v0.7.0/gotempl-linux-amd64
chmod +x $HOME/bin/gotempl
- name: Install dependencies
# You can remove libayatana-appindicator3-dev if you don't use the system tray feature.
run: |
apt-get update
apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libayatana-appindicator3-dev librsvg2-dev
- name: Install windows cross-compiling deps
run: apt install -y nsis lld llvm
- name: Install rust and allow it to work with the crosscompiler stuff.
# has to be done all together because of https://github.com/rust-lang/rustup/issues/1239
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > /tmp/rustup.sh
sh /tmp/rustup.sh -y
source "$HOME/.cargo/env"
rustup target add x86_64-pc-windows-msvc
cargo install xwin
xwin --accept-license splat --output ~/.xwin --disable-symlinks
mkdir $HOME/.cargo -p
cat > $HOME/.cargo/config.toml <<EOF
[target.x86_64-pc-windows-msvc]
linker = "lld"
rustflags = [
"-Lnative=/home/username/.xwin/crt/lib/x86_64",
"-Lnative=/home/username/.xwin/sdk/lib/um/x86_64",
"-Lnative=/home/username/.xwin/sdk/lib/ucrt/x86_64"
]
EOF
- name: Check out repository code
uses: actions/checkout@v3
- run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."