Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add build toolchain and project on mac #601

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
35 changes: 35 additions & 0 deletions .github/workflows/build-toolchain.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build toolchain

on:
workflow_dispatch:

jobs:
build-macos:
name: build-macos-toolchain
runs-on: macos-12
steps:
- name: Checkout the repository
uses: actions/checkout@v3
with:
submodules: recursive

- name: Install denependecies
run: |
brew install bash coreutils autoconf automake genext2fs make wget gnu-sed
echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH
echo "$(brew --prefix gnu-sed)/libexec/gnubin" >> $GITHUB_PATH

- name: Build toolchain
run: |
mkdir ~/toolchain
git rev-parse --short HEAD > ~/toolchain/git-version
cd phoenix-rtos-build/toolchain/
./build-toolchain.sh i386-pc-phoenix "$HOME"/toolchain/
# upload/download-artifact action don't preserve permissions and compresses to zip. Pack to archive and don't compress.
tar -C ~/toolchain -cvf ~/i386-pc-phoenix-macos.tar i386-pc-phoenix git-version

- name: Upload toolchain artifacts
uses: actions/upload-artifact@v3
with:
name: i386-pc-phoenix-macos
path: ~/i386-pc-phoenix-macos.tar
58 changes: 58 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Nightly

on:
schedule:
- cron: '0 1 * * *' # everyday at 02:00 UTC+1
workflow_dispatch:

jobs:
build-macos:
name: build-macos
runs-on: macos-12
strategy:
matrix:
target: [ia32-generic-qemu]
include:
- toolchain: i386-pc-phoenix
Copy link
Contributor Author

@jsarzy jsarzy Feb 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added toolchain to matrix. In future it will be easier to add other compilers.


steps:
- name: Checkout the repository
uses: actions/checkout@v3
with:
submodules: recursive

- name: Install denependecies
run: |
brew install bash coreutils autoconf automake genext2fs make wget gnu-sed
echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH
echo "$(brew --prefix gnu-sed)/libexec/gnubin" >> $GITHUB_PATH

- name: Download toolchain
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe add TODO: download from github packages/releases?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

# TODO: download from github packages/releases
uses: dawidd6/action-download-artifact@v2
with:
workflow: build-toolchain.yml

- name: Install toolchain
working-directory: ${{ matrix.toolchain }}-macos
run: |
tar -xvf ${{ matrix.toolchain }}-macos.tar
echo "$(pwd)"/${{ matrix.toolchain }}/bin >> $GITHUB_PATH

- name: Build
run: ./phoenix-rtos-build/build.sh all tests
env:
TARGET: ${{ matrix.target }}

- name: Tar rootfs
working-directory: _fs
run: tar -cvf ../rootfs-${{ matrix.target }}.tar ${{ matrix.target }}/root

- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: phoenix-rtos-${{ matrix.target }}-macos-host
path: |
_boot/${{ matrix.target }}
rootfs-${{ matrix.target }}.tar