-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
262 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
name: Test | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
paths-ignore: | ||
- "**/*.md" | ||
- "LICENSE*" | ||
- ".github/workflows/precompile.yml" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
linux: | ||
runs-on: ubuntu-latest | ||
env: | ||
MIX_ENV: test | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: erlef/setup-beam@v1 | ||
with: | ||
otp-version: 25.3 | ||
elixir-version: 1.14 | ||
|
||
- name: Compile | ||
run: | | ||
mix deps.get | ||
mix compile | ||
windows: | ||
runs-on: windows-latest | ||
env: | ||
MIX_ENV: test | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: erlef/setup-beam@v1 | ||
with: | ||
otp-version: 25 | ||
elixir-version: 1.14 | ||
|
||
- uses: ilammy/msvc-dev-cmd@v1 | ||
with: | ||
arch: x64 | ||
|
||
- name: Compile | ||
shell: bash | ||
run: | | ||
mix deps.get | ||
mix compile | ||
macos: | ||
runs-on: macos-12 | ||
env: | ||
MIX_ENV: test | ||
OTP_VERSION: "26.2.1" | ||
ELIXIR_VERSION: "1.15.7" | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Cache OTP | ||
uses: actions/cache@v4 | ||
id: cache-otp | ||
with: | ||
path: ./cache/otp | ||
key: ${{ runner.os }}-otp-${{ env.OTP_VERSION }} | ||
|
||
- name: Download OTP | ||
if: steps.cache-otp.outputs.cache-hit != 'true' | ||
run: | | ||
mkdir -p ./cache/otp | ||
curl -fSL https://cocoa.build/otp/v${{ env.OTP_VERSION }}/otp-x86_64-apple-darwin.tar.gz -o ./cache/otp/otp-v${{ env.OTP_VERSION }}-x86_64-apple-darwin.tar.gz | ||
cd ./cache/otp | ||
tar -xzf otp-v${{ env.OTP_VERSION }}-x86_64-apple-darwin.tar.gz | ||
- name: Cache Elixir | ||
id: cache-elixir | ||
uses: actions/cache@v4 | ||
with: | ||
path: ./cache/elixir | ||
key: ${{ runner.os }}-elixir-${{ env.ELIXIR_VERSION }} | ||
|
||
- name: Download and Compile Elixir | ||
if: steps.cache-elixir.outputs.cache-hit != 'true' | ||
run: | | ||
export PATH=$(pwd)/./cache/otp/usr/local/bin:$(pwd)/./cache/elixir/elixir-${{ env.ELIXIR_VERSION }}/bin:${PATH} | ||
export ERL_ROOTDIR=$(pwd)/./cache/otp/usr/local/lib/erlang | ||
mkdir -p ./cache/elixir | ||
curl -fSL https://github.com/elixir-lang/elixir/archive/refs/tags/v${{ env.ELIXIR_VERSION }}.tar.gz -o ./cache/elixir/elixir-${{ env.ELIXIR_VERSION }}.tar.gz | ||
cd ./cache/elixir | ||
tar -xzf elixir-${{ env.ELIXIR_VERSION }}.tar.gz | ||
cd elixir-${{ env.ELIXIR_VERSION }} | ||
make -j$(sysctl -n hw.ncpu) install | ||
- name: macOS setup | ||
run: | | ||
export PATH=$(pwd)/./cache/otp/usr/local/bin:$(pwd)/./cache/elixir/elixir-${{ env.ELIXIR_VERSION }}/bin:${PATH} | ||
export ERL_ROOTDIR=$(pwd)/./cache/otp/usr/local/lib/erlang | ||
mix local.hex --force | ||
mix local.rebar --force | ||
- name: Compile and Test | ||
run: | | ||
export PATH=$(pwd)/./cache/otp/usr/local/bin:$(pwd)/./cache/elixir/elixir-${{ env.ELIXIR_VERSION }}/bin:${PATH} | ||
export ERL_ROOTDIR=$(pwd)/./cache/otp/usr/local/lib/erlang | ||
mix deps.get | ||
mix compile |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
name: precompile | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
linux: | ||
runs-on: ubuntu-latest | ||
env: | ||
MIX_ENV: prod | ||
strategy: | ||
matrix: | ||
otp_version: [25] | ||
|
||
name: Linux GNU - OTP ${{ matrix.otp_version }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: erlef/setup-beam@v1 | ||
with: | ||
otp-version: ${{ matrix.otp_version }} | ||
elixir-version: 1.15 | ||
|
||
- name: Install system dependecies | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y build-essential automake autoconf pkg-config bc m4 unzip zip \ | ||
gcc g++ \ | ||
gcc-i686-linux-gnu g++-i686-linux-gnu \ | ||
gcc-aarch64-linux-gnu g++-aarch64-linux-gnu \ | ||
gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf \ | ||
gcc-riscv64-linux-gnu g++-riscv64-linux-gnu \ | ||
gcc-powerpc64le-linux-gnu g++-powerpc64le-linux-gnu \ | ||
gcc-s390x-linux-gnu g++-s390x-linux-gnu | ||
- name: Precompile | ||
run: | | ||
export ELIXIR_MAKE_CACHE_DIR=$(pwd)/cache | ||
mkdir -p "${ELIXIR_MAKE_CACHE_DIR}" | ||
mix deps.get | ||
mix elixir_make.precompile | ||
- uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: | | ||
cache/expty*.tar.gz | ||
cache/expty*.sha256 | ||
macos: | ||
runs-on: macos-12 | ||
env: | ||
MIX_ENV: prod | ||
elixir_version: "1.16.2" | ||
strategy: | ||
matrix: | ||
job: | ||
- { otp_version: "25.3.2.8", elixir: "1.16.2" } | ||
|
||
name: macOS - OTP ${{ matrix.job.otp_version }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install erlang and elixir | ||
run: | | ||
export ROOT_DIR=$(pwd) | ||
mkdir -p ./cache/otp | ||
curl -fSL https://github.com/cocoa-xu/otp-build/releases/download/v${{ matrix.job.otp_version }}/otp-x86_64-apple-darwin.tar.gz -o ./cache/otp/otp-v${{ matrix.job.otp_version }}-x86_64-apple-darwin.tar.gz | ||
cd ./cache/otp | ||
tar -xzf otp-v${{ matrix.job.otp_version }}-x86_64-apple-darwin.tar.gz | ||
cd ${ROOT_DIR} | ||
export PATH=$(pwd)/cache/otp/usr/local/bin:$(pwd)/./cache/elixir/elixir-${{ matrix.job.elixir }}/bin:${PATH} | ||
export ERL_ROOTDIR=$(pwd)/cache/otp/usr/local/lib/erlang | ||
mkdir -p ./cache/elixir | ||
curl -fSL https://github.com/elixir-lang/elixir/archive/refs/tags/v${{ matrix.job.elixir }}.tar.gz -o ./cache/elixir/elixir-${{ matrix.job.elixir }}.tar.gz | ||
cd ./cache/elixir | ||
tar -xzf elixir-${{ matrix.job.elixir }}.tar.gz | ||
cd elixir-${{ matrix.job.elixir }} | ||
make compile | ||
make -j$(sysctl -n hw.ncpu) install | ||
mix local.hex --force | ||
mix local.rebar --force | ||
- name: Precompile | ||
run: | | ||
export PATH=$(pwd)/cache/otp/usr/local/bin:$(pwd)/./cache/elixir/elixir-${{ matrix.job.elixir }}/bin:${PATH} | ||
export ERL_ROOTDIR=$(pwd)/cache/otp/usr/local/lib/erlang | ||
export ELIXIR_MAKE_CACHE_DIR=$(pwd)/cache | ||
mkdir -p "${ELIXIR_MAKE_CACHE_DIR}" | ||
mix deps.get | ||
mix elixir_make.precompile | ||
- uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: | | ||
cache/expty*.tar.gz | ||
cache/expty*.sha256 | ||
windows: | ||
runs-on: windows-latest | ||
env: | ||
MIX_ENV: prod | ||
strategy: | ||
matrix: | ||
otp_version: [25] | ||
|
||
name: Windows - OTP ${{ matrix.otp_version }} | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: erlef/setup-beam@v1 | ||
with: | ||
otp-version: ${{ matrix.otp_version }} | ||
elixir-version: 1.15 | ||
|
||
- uses: ilammy/msvc-dev-cmd@v1 | ||
with: | ||
arch: x64 | ||
|
||
- name: Precompile | ||
shell: bash | ||
run: | | ||
export ELIXIR_MAKE_CACHE_DIR=$(pwd)/cache | ||
mkdir -p "${ELIXIR_MAKE_CACHE_DIR}" | ||
mix deps.get | ||
mix elixir_make.precompile | ||
- uses: softprops/action-gh-release@v2 | ||
if: startsWith(github.ref, 'refs/tags/') | ||
with: | ||
files: | | ||
cache/expty*.tar.gz | ||
cache/expty*.sha256 |