mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-22 22:56:07 +00:00
6e9312bce0
* Update rebar3's releases.json per current results * Up rebar3 test versions * Retire windows-2019 * Add "support" to win25-vs2026 next to win25 windows-2025-vs2026 label was previously a beta testing tag but is now the production default * Fix rebar3 test releases.json * Bump per CI results * Fix per CI results (I checked in releases.json) * Adapt to Ubuntu 26.04 (no -arm) * Consider Ubuntu ARM variants in execution * Typo * Bump it to the minimum expect value * Bump it to the minimum expect value * Tweak ARM tests: drop windows-11 * Fix per prior test results * Try testing OTP to update README * Improve guarantees on the README (via tests) * Improve guarantees on the README (via tests) Trust tests in intervals (if first Ok and last Ok the middle Ok) * Add further constraints for testing (per README) * Remove moving-target test This is prone to fail for an issue with OTP's main branch but it shouldn't affect the action, so we remove it * Respect Hex's boundaries * Make it consistent (no need for .0 in versioning) * Restrict it a bit We keep the README as-is, since there's nothing preventing us from thinking it works as stated, but we move our tests forward * Make it easier to follow * Fix it per stalled CI * Fix it: no macos-16; it's macos-26 * Deprecate macos-13 Per https://github.blog/changelog/2025-07-11-upcoming-changes-to-macos-hosted-runners-macos-latest-migration-and-xcode-support-policy-updates/#macos-13-is-closing-down * Make ImageOS support more explicit * Move forward
161 lines
5.2 KiB
YAML
161 lines
5.2 KiB
YAML
---
|
|
name: windows
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
integration_test:
|
|
name: >
|
|
OS ${{matrix.combo.os}},
|
|
OTP ${{matrix.combo.otp-version}},
|
|
Elixir ${{matrix.combo.elixir-version}},
|
|
Gleam ${{matrix.combo.gleam-version}},
|
|
rebar3 ${{matrix.combo.rebar3-version}}
|
|
runs-on: ${{matrix.combo.os}}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
combo:
|
|
# Windows 2022 - per README
|
|
- otp-version: '26' # 21 is "so old", at this moment, we can't find it in latest 100
|
|
os: 'windows-2022'
|
|
- otp-version: '29'
|
|
os: 'windows-2022'
|
|
# Windows 2025 - per README
|
|
- otp-version: '26' # 21 is "so old", at this moment, we can't find it in latest 100
|
|
os: 'windows-2025'
|
|
- otp-version: '29'
|
|
os: 'windows-2025'
|
|
# Windows latest
|
|
- otp-version: '<26'
|
|
elixir-version: '<1.17'
|
|
os: 'windows-latest'
|
|
- otp-version: '27'
|
|
elixir-version: 'v1.17.0'
|
|
rebar3-version: '3.23'
|
|
os: 'windows-latest'
|
|
- otp-version: '26.0'
|
|
elixir-version: 'main'
|
|
os: 'windows-latest'
|
|
version-type: 'strict'
|
|
- otp-version: '26.0'
|
|
elixir-version: 'v1.14-otp-25'
|
|
os: 'windows-latest'
|
|
version-type: 'strict'
|
|
- otp-version: '26.0'
|
|
elixir-version: '1.14.5'
|
|
os: 'windows-latest'
|
|
version-type: 'strict'
|
|
- elixir-version: 'v1.10'
|
|
otp-version: '23'
|
|
rebar3-version: '3.14'
|
|
os: 'windows-latest'
|
|
- elixir-version: 'v1.16'
|
|
otp-version: '24'
|
|
rebar3-version: '3.15'
|
|
os: 'windows-latest'
|
|
- gleam-version: '1.9.0'
|
|
otp-version: '27'
|
|
os: 'windows-latest'
|
|
- elixir-version: 'v1.16'
|
|
otp-version: '24'
|
|
escript_packages: 'hex protobuf'
|
|
escript_script: 'protoc-gen-elixir --version'
|
|
os: 'windows-latest'
|
|
steps:
|
|
- uses: actions/checkout@v6.0.2
|
|
- name: Use erlef/setup-beam
|
|
id: setup-beam
|
|
uses: ./
|
|
with:
|
|
otp-version: ${{matrix.combo.otp-version}}
|
|
elixir-version: ${{matrix.combo.elixir-version}}
|
|
gleam-version: ${{matrix.combo.gleam-version}}
|
|
rebar3-version: ${{matrix.combo.rebar3-version}}
|
|
version-type: ${{matrix.combo.version-type}}
|
|
- name: Erlang/OTP version (action)
|
|
run: echo "Erlang/OTP ${{steps.setup-beam.outputs.otp-version}}"
|
|
- name: Elixir version (action)
|
|
run: echo "Elixir ${{steps.setup-beam.outputs.elixir-version}}"
|
|
if: ${{matrix.combo.elixir-version}}
|
|
- name: Gleam version (action)
|
|
run: echo "Gleam ${{steps.setup-beam.outputs.gleam-version}}"
|
|
if: ${{matrix.combo.gleam-version}}
|
|
- name: rebar3 version (action)
|
|
run: echo "rebar3 ${{steps.setup-beam.outputs.rebar3-version}}"
|
|
- name: Run rebar3 and rebar3.cmd
|
|
run: |
|
|
# Should not fail
|
|
rebar3 version
|
|
rebar3.cmd version
|
|
if: ${{matrix.combo.rebar3-version}}
|
|
- name: rebar3 from Rust
|
|
run: |
|
|
cd test/projects/rust_rebar3_cmd
|
|
cargo test -- --nocapture
|
|
if: ${{matrix.combo.rebar3-version}}
|
|
- name: mix version and help (CLI)
|
|
run: |
|
|
mix -v
|
|
mix help local.rebar
|
|
mix help local.hex
|
|
if: ${{matrix.combo.elixir-version}}
|
|
- name: Run Elixir/Mix project tests
|
|
run: |
|
|
cd test/projects/elixir_mix
|
|
mix deps.get
|
|
mix test
|
|
if: ${{matrix.combo.elixir-version}}
|
|
- name: Run Erlang/rebar3 project tests
|
|
run: |
|
|
cd test/projects/erlang_rebar3
|
|
rebar3 ct
|
|
if: ${{matrix.combo.rebar3-version}}
|
|
- name: Run escript
|
|
run: |
|
|
mix escript.install --force ${{matrix.combo.escript_packages}}
|
|
${{matrix.combo.escript_script}}
|
|
if: ${{matrix.combo.escript_packages && matrix.combo.escript_script}}
|
|
|
|
environment_variables:
|
|
name: Environment variables
|
|
runs-on: ${{matrix.combo.os}}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
combo:
|
|
- otp-version: 27
|
|
elixir-version: 1.19
|
|
gleam-version: 1.10
|
|
rebar3-version: 3.24
|
|
os: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v6.0.2
|
|
- name: Use erlef/setup-beam
|
|
id: setup-beam
|
|
uses: ./
|
|
with:
|
|
otp-version: ${{matrix.combo.otp-version}}
|
|
elixir-version: ${{matrix.combo.elixir-version}}
|
|
gleam-version: ${{matrix.combo.gleam-version}}
|
|
rebar3-version: ${{matrix.combo.rebar3-version}}
|
|
- run: env
|
|
- name: Check environment variables
|
|
run: |
|
|
& "$Env:INSTALL_DIR_FOR_ELIXIR/bin/elixir" "-v"
|
|
& "$Env:INSTALL_DIR_FOR_GLEAM/bin/gleam.exe" "--version"
|
|
& "$Env:INSTALL_DIR_FOR_OTP/bin/erl.exe" "+V"
|
|
& "$Env:INSTALL_DIR_FOR_REBAR3/bin/rebar3.cmd" "version"
|
|
& "$Env:INSTALL_DIR_FOR_REBAR3/bin/rebar3.ps1" "version"
|
|
shell: pwsh
|