next experiment #30
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: C/C++ CI | |
on: | |
schedule: | |
- cron: "0 22 3 * 5" # run test once a month | |
push: | |
branches: [master] | |
paths: | |
- configure.ac | |
- 'src/**' | |
- 'include/**' | |
- '.github/workflows/*' | |
pull_request: | |
branches: [master] | |
jobs: | |
notification: | |
runs-on: ubuntu-latest | |
name: Notifications | |
outputs: | |
branch: ${{ steps.extract_branch.outputs.branch }} | |
steps: | |
- name: Extract Branch name | |
id: extract_branch | |
shell: bash | |
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT | |
- name: IRC notification | |
uses: Gottox/irc-message-action@v2 | |
with: | |
server: irc.uvt.nl | |
channel: '#gitlama' | |
nickname: GitHub | |
message: > | |
${{ github.actor }} started a build of unicodetest | |
[${{ steps.extract_branch.outputs.branch }}] | |
build: | |
runs-on: ${{ matrix.os }} | |
needs: notification | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
compiler: [g++-12, clang++] | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/[email protected] | |
- name: Install Build Environment | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
sudo apt-get install pkgconf autoconf-archive | |
else | |
brew upgrade | |
brew install libtool | |
brew install autoconf | |
brew install autoconf-archive | |
brew install automake | |
fi | |
- name: Install Dependencies | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ]; then | |
sudo apt-get install libicu-dev libxml2-dev libbz2-dev; | |
sudo apt-get install zlib1g-dev | |
else | |
brew install libxml2 | |
brew reinstall icu4c | |
brew install bzip2 | |
brew install zlib | |
fi | |
- name: build | |
id: build | |
uses: LanguageMachines/ticcactions/[email protected] | |
with: | |
compiler: ${{ matrix.compiler }} | |
- name: show status | |
shell: bash | |
run: echo ACTION_STATUS=${{ env.action_status }} | |
- id: compiler | |
run: | | |
cid=$(echo ${{matrix.compiler}} | cut -d\+ -f1) | |
echo "cid=$cid" >> $GITHUB_ENV | |
- name: Notify IRC of resullts | |
uses: LanguageMachines/ticcactions/irc_status@v1 | |
with: | |
os: ${{ matrix.os }} | |
branch: ${{ needs.notification.outputs.branch }} | |
compiler: ${{ matrix.compiler }} |