mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-11 08:15:38 +02:00
Bumps [svenstaro/upload-release-action](https://github.com/svenstaro/upload-release-action) from 2.7.0 to 2.9.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/svenstaro/upload-release-action/releases">svenstaro/upload-release-action's releases</a>.</em></p> <blockquote> <h2>2.9.0</h2> <ul> <li>Allow seeting a release as draft <a href="https://redirect.github.com/svenstaro/upload-release-action/pull/112">#112</a> (thanks <a href="https://github.com/ShonP40"><code>@ShonP40</code></a>)</li> </ul> <h2>2.8.0</h2> <ul> <li>Bump all deps</li> <li>Update to node 20</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/svenstaro/upload-release-action/blob/master/CHANGELOG.md">svenstaro/upload-release-action's changelog</a>.</em></p> <blockquote> <h2>[2.9.0] - 2024-02-22</h2> <ul> <li>Allow seeting a release as draft <a href="https://redirect.github.com/svenstaro/upload-release-action/pull/112">#112</a> (thanks <a href="https://github.com/ShonP40"><code>@ShonP40</code></a>)</li> </ul> <h2>[2.8.0] - 2024-02-21</h2> <ul> <li>Bump all deps</li> <li>Update to node 20</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="04733e069f"><code>04733e0</code></a> This is 2.9.0</li> <li><a href="7b5b755e5b"><code>7b5b755</code></a> Add CHANGELOG entry for <a href="https://redirect.github.com/svenstaro/upload-release-action/issues/112">#112</a></li> <li><a href="17449a21ea"><code>17449a2</code></a> Add draft release support (fixes <a href="https://redirect.github.com/svenstaro/upload-release-action/issues/19">#19</a>)</li> <li><a href="ec2ff03a5a"><code>ec2ff03</code></a> Amend CHANGELOG</li> <li><a href="ff23fb2574"><code>ff23fb2</code></a> This is 2.8.0</li> <li><a href="8e438350b0"><code>8e43835</code></a> Bump all deps</li> <li><a href="fe68892921"><code>fe68892</code></a> Merge pull request <a href="https://redirect.github.com/svenstaro/upload-release-action/issues/113">#113</a> from svenstaro/dependabot/npm_and_yarn/babel/traverse...</li> <li><a href="a13e7b5d40"><code>a13e7b5</code></a> Merge pull request <a href="https://redirect.github.com/svenstaro/upload-release-action/issues/116">#116</a> from der-eismann/update-to-node20</li> <li><a href="a4bae284e7"><code>a4bae28</code></a> Update to node20</li> <li><a href="c19ddf4c20"><code>c19ddf4</code></a> Bump <code>@babel/traverse</code> from 7.22.8 to 7.23.2</li> <li>Additional commits viewable in <a href="https://github.com/svenstaro/upload-release-action/compare/2.7.0...2.9.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
190 lines
6.3 KiB
YAML
190 lines
6.3 KiB
YAML
#Tabs not spaces, you moron :)
|
|
|
|
name: CI for netris:warp
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "warp.Dockerfile"
|
|
- ".github/workflows/warp.yml"
|
|
schedule:
|
|
- cron: 0 0 * * * # At the end of everyday
|
|
workflow_dispatch:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- "warp.Dockerfile"
|
|
- ".github/workflows/warp.yml"
|
|
tags:
|
|
- v*.*.*
|
|
release:
|
|
types: [published, created]
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
IMAGE_NAME: wanjohiryan/netris
|
|
BASE_TAG_PREFIX: warp
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build-docker-pr:
|
|
name: Build image on pr
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.event_name == 'pull_request' }}
|
|
steps:
|
|
-
|
|
name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
-
|
|
name: Setup Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
-
|
|
name: Build Docker image
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
file: warp.Dockerfile
|
|
context: ./
|
|
push: false
|
|
load: true
|
|
tags: netris:warp
|
|
|
|
build-docker-main:
|
|
name: Build image on merge to main
|
|
if: ${{github.ref == 'refs/heads/main'}}
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
steps:
|
|
-
|
|
name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
-
|
|
name: Log into registry ${{ env.REGISTRY }}
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
-
|
|
name: Extract Container metadata
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/${{ env.BASE_TAG_PREFIX }}
|
|
#
|
|
#tag on release, and a nightly build for 'dev'
|
|
tags: |
|
|
type=raw,value=nightly,enable={{is_default_branch}}
|
|
type=ref,event=tag
|
|
type=semver,pattern={{version}}
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
type=semver,pattern={{major}}
|
|
-
|
|
name: Build Docker image
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
file: warp.Dockerfile
|
|
context: ./
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
|
|
build-warp-release:
|
|
if: ${{ github.event_name == 'release' }}
|
|
defaults:
|
|
run:
|
|
working-directory: moq-server
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
settings:
|
|
- host: ubuntu-20.04
|
|
target: x86_64-unknown-linux-gnu
|
|
bundles: appimage
|
|
asset_name: warp-ubuntu-amd64
|
|
- host: windows-latest
|
|
target: x86_64-pc-windows-msvc
|
|
bundles: msi
|
|
asset_name: warp-windows-amd64
|
|
- host: macos-latest
|
|
target: x86_64-apple-darwin
|
|
bundles: dmg
|
|
asset_name: warp-macos-amd64
|
|
- host: macos-latest
|
|
target: aarch64-apple-darwin
|
|
bundles: dmg
|
|
asset_name: warp-macos-apple-silicon
|
|
# - host: ubuntu-20.04
|
|
# target: x86_64-unknown-linux-musl
|
|
# - host: ubuntu-20.04
|
|
# target: aarch64-unknown-linux-gnu
|
|
# - host: ubuntu-20.04
|
|
# target: aarch64-unknown-linux-musl
|
|
# - host: ubuntu-20.04
|
|
# target: armv7-unknown-linux-gnueabihf
|
|
name: Build warp on release
|
|
runs-on: ${{ matrix.settings.host }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install Rust
|
|
id: toolchain
|
|
uses: dtolnay/rust-toolchain@stable
|
|
with:
|
|
targets: ${{ matrix.settings.target }}
|
|
toolchain: stable
|
|
components: clippy, rustfmt
|
|
|
|
- name: Cache Rust Dependencies
|
|
uses: Swatinem/rust-cache@v2
|
|
with:
|
|
save-if: false
|
|
prefix-key: 'v0-rust-deps'
|
|
shared-key: ${{ matrix.settings.target }}
|
|
|
|
- name: Cargo build
|
|
run: cargo build --target ${{ matrix.settings.target }} --manifest-path ./moq-pub/Cargo.toml --release
|
|
|
|
- name: Copy and rename artifacts (Linux)
|
|
if: ${{ matrix.settings.host == 'ubuntu-20.04' }}
|
|
run: |
|
|
cp target/${{ matrix.settings.target }}/release/moq-pub ./warp
|
|
|
|
- name: Copy and rename artifacts (Windows)
|
|
if: ${{ matrix.settings.host == 'windows-latest' }}
|
|
run: |
|
|
cp "target/${{ matrix.settings.target }}/release/moq-pub.exe" ./warp.exe
|
|
|
|
- name: Copy and rename artifacts (macOS)
|
|
if: ${{ matrix.settings.host == 'macos-latest' }}
|
|
run: |
|
|
cp target/${{ matrix.settings.target }}/release/moq-pub ./warp
|
|
|
|
- name: Publish release for (${{ matrix.settings.host }})
|
|
if: ${{ matrix.settings.host == 'windows-latest' }}
|
|
uses: svenstaro/upload-release-action@2.9.0
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: ./moq-server/warp.exe
|
|
asset_name: ${{ matrix.settings.asset_name }}
|
|
tag: ${{ github.ref }}
|
|
|
|
- name: Publish release for (${{ matrix.settings.host }})
|
|
if: ${{ matrix.settings.host != 'windows-latest' }}
|
|
uses: svenstaro/upload-release-action@2.9.0
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: ./moq-server/warp
|
|
asset_name: ${{ matrix.settings.asset_name }}
|
|
tag: ${{ github.ref }} |