Merge pull request #129 from indoorvivants/update/auxlib-0.5.5 #303
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: CI | |
on: | |
push: | |
branches: ["main"] | |
tags: ["v*"] | |
pull_request: | |
branches: ["*"] | |
env: | |
JAVA_OPTS: "-Xmx4G" | |
jobs: | |
build: | |
name: CI on ${{matrix.os}} ${{matrix.segment}} out of 3 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-14, ubuntu-22.04] | |
segment: [1, 2, 3] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
cache: sbt | |
# - name: Cache vcpkg | |
# uses: actions/cache@v3 | |
# with: | |
# path: | | |
# ~/Library/Caches/sbt-vcpkg/vcpkg-install | |
# ~/Library/Caches/sbt-vcpkg/vcpkg | |
# ~/.cache/sbt-vcpkg/vcpkg-install | |
# ~/.cache/sbt-vcpkg/vcpkg | |
# key: ${{ runner.os }}-sbt-vcpkg-${{ matrix.segment }} | |
- uses: rui314/setup-mold@v1 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Setup for Scala Native | |
run: | | |
PLATFORM="$(uname)" | |
if [ $PLATFORM == "Darwin" ]; then | |
echo "It's a Mac" | |
brew install llvm@17 ninja sbt autoconf | |
echo "LLVM_BIN=/opt/homebrew/opt/llvm@17/bin" >> $GITHUB_ENV | |
else | |
echo "It's a Linux" | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x llvm.sh | |
sudo ./llvm.sh 17 | |
sudo apt-get install ninja-build | |
echo "LLVM_BIN=/usr/lib/llvm-17/bin" >> $GITHUB_ENV | |
fi | |
- name: Setup for examples | |
run: | | |
PLATFORM="$(uname)" | |
if [ $PLATFORM == "Darwin" ]; then | |
python3 -m pip install packaging | |
else | |
docker run -p 5432:5432 -e POSTGRES_PASSWORD=mysecretpassword -d postgres | |
docker run -e MYSQL_ROOT_PASSWORD=my-secret-pw -e MYSQL_USER=mysql -e MYSQL_PASSWORD=mysql-password -e MYSQL_DATABASE=mysql_db -p 3306:3306 -d mysql | |
docker run -p 6379:6379 -d redis | |
fi | |
./manual_setup.sh | |
- name: Run examples | |
run: sbt 'runBatchedExamples ${{matrix.segment}} 3' | |
mergify-build-checkpoint: | |
runs-on: ubuntu-latest | |
needs: [build] | |
steps: | |
- name: I only exist to please Mergify :( | |
run: echo "It's a sad existence but necessary" |