Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ on:
arch:
required: true
type: string
test_build:
required: false
type: boolean
default: false
secrets:
RPM_SIGNING_KEY:
required: true
Expand Down Expand Up @@ -162,6 +166,7 @@ jobs:

- name: Upload RPM and logs to R2 to trivalent Bucket
shell: bash
if: ${{ ! inputs.test_build }}
env:
RCLONE_CONFIG_R2_TYPE: s3
RCLONE_CONFIG_R2_PROVIDER: Cloudflare
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/build_aarch64_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Copyright 2025 The Trivalent Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and limitations under the License.

name: build-aarch64-test

permissions: {}

on:
workflow_dispatch:


jobs:
build-aarch64-test:
name: Build aarch64 test
if: github.triggering_actor == 'royaloughtness'
strategy:
fail-fast: false
uses: ./.github/workflows/build.yml
with:
arch: 'aarch64'
test_build: true
secrets:
RPM_SIGNING_KEY: ${{ secrets.RPM_SIGNING_KEY }}
R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }}
R2_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }}
R2_ENDPOINT: ${{ secrets.R2_ENDPOINT }}
35 changes: 35 additions & 0 deletions .github/workflows/build_x86_64_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Copyright 2025 The Trivalent Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License is
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and limitations under the License.

name: build-x86_64-test

permissions: {}

on:
workflow_dispatch:


jobs:
build-x86_64-test:
name: Build x86_64 test
if: github.triggering_actor == 'royaloughtness'
strategy:
fail-fast: false
uses: ./.github/workflows/build.yml
with:
arch: 'x86_64'
test_build: true
secrets:
RPM_SIGNING_KEY: ${{ secrets.RPM_SIGNING_KEY }}
R2_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }}
R2_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }}
R2_ENDPOINT: ${{ secrets.R2_ENDPOINT }}