FreeDOS/.github/workflows/ci-build.yml

53 lines
1.2 KiB
YAML
Raw Normal View History

2021-01-14 13:25:02 +01:00
name: Build
2021-01-09 01:00:25 +01:00
on:
2021-01-14 13:25:02 +01:00
pull_request:
types:
- opened
- edited
- ready_for_review
- reopened
- synchronize
2021-01-09 01:00:25 +01:00
push:
workflow_dispatch:
2021-01-09 01:00:25 +01:00
jobs:
build:
2021-01-14 13:25:02 +01:00
if: contains(github.event.head_commit.message, '[skip ci]') == false
2021-01-09 01:00:25 +01:00
runs-on: ubuntu-20.04
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
2021-01-09 01:00:25 +01:00
- name: Package install
run: |
sudo add-apt-repository ppa:tkchia/build-ia16
sudo apt update
sudo apt install gcc-ia16-elf libi86-ia16-elf nasm upx qemu-system-x86 mtools util-linux bash
2021-01-09 01:00:25 +01:00
- name: build
run: ./ci_build.sh
- name: test
run: ./ci_test.sh
- name: make snapshot name
id: snapshotname
run: |
(
today=`date -u +%F | tr '\n' '-'`
s_sha=`echo -n ${GITHUB_SHA} | cut -c1-8`
2022-10-28 11:08:54 +02:00
printf "fname=snapshot-%s%s\n" $today $s_sha >> $GITHUB_OUTPUT
2021-01-09 01:00:25 +01:00
)
- name: upload
2021-01-14 13:25:02 +01:00
if: github.repository == 'FDOS/kernel' &&
(github.event_name == 'push' || github.event.pull_request.merged == true)
uses: actions/upload-artifact@v3
2021-01-09 01:00:25 +01:00
with:
name: ${{ steps.snapshotname.outputs.fname }}
path: _output/*/*.???