Build ICU4C on Fedora Linux #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build ICU4C on Fedora Linux | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
foo: | ||
description: 'Something, whatever' | ||
type: string | ||
container: | ||
image: ghcr.io/mihnita/fedora-docker-gcr:latest | ||
credentials: | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.github_token }} | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: fedora-docker-gcr | ||
permissions: | ||
contents: read | ||
steps: | ||
- name: Checkout repo files | ||
uses: actions/[email protected] | ||
with: | ||
lfs: true | ||
- name: Inspect | ||
run: | | ||
echo $PWD \ | ||
ls \ | ||
ls / | ||
- name: Build ICU4J | ||
run: | | ||
git clone --depth=1 https://github.com/unicode-org/icu.git icu_fed \ | ||
cd icu_fed/icu4c/source \ | ||
./runConfigureICU Linux/gcc \ | ||
make -j8 \ | ||
make check \ | ||
sed -i 's/^DOXYGEN *= *$/DOXYGEN = echo/g' Makefile \ | ||
make dist |