mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-04-19 19:14:52 +00:00
add build CI
This commit is contained in:
parent
3e243eb249
commit
06c40b4d41
1 changed files with 35 additions and 0 deletions
35
.github/workflows/build.yml
vendored
Normal file
35
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,35 @@
|
|||
name: Build Atmosphere
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- evaron-master
|
||||
paths-ignore:
|
||||
- 'Dockerfile'
|
||||
# tags:
|
||||
# - '[0-9]+.[0-9]+.[0-9]+'
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: build
|
||||
runs-on: ubuntu-latest
|
||||
container: ghcr.io/${{ github.repository_owner }}/devkita64-atmosphere:latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Build Atmosphere
|
||||
run: |
|
||||
source /opt/venv/bin/activate
|
||||
git config --global --add safe.directory "*"
|
||||
make
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: atmosphere-artifacts
|
||||
path: ./out/nintendo_nx_arm64_armv8a/release/*
|
Loading…
Add table
Reference in a new issue