Added Gitea Action
Some checks failed
Build Veilid for Linux amd64 / Explore-Gitea-Actions (push) Failing after 4m6s

This commit is contained in:
Elizabeth Cray 2023-10-22 15:54:21 -04:00
parent 5691e5a6ac
commit df6cb7c9b8

View File

@ -0,0 +1,32 @@
# .gitea/workflows/build.yaml
name: Build Veilid for Linux amd64
run-name: ${{ github.actor }} is building Veilid for linux_amd64
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.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 ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Setup build dependencies
run: /usr/bin/yes | ./dev-setup/install_linux_prerequisites.sh
- name: Setup Linux Environment
run: /usr/bin/yes | ./dev-setup/setup_linux.sh
- name: Build Veilid
uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: dist-without-markdown
path: |
target
!dist/**/*.md