mirror of
https://github.com/erlef/setup-beam.git
synced 2026-08-01 03:26:08 +00:00
Merge branch 'master' into emj/hex
This commit is contained in:
@@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
"problemMatcher": [
|
||||||
|
{
|
||||||
|
"owner": "elixir",
|
||||||
|
"pattern": [
|
||||||
|
{
|
||||||
|
"regexp": "^(\\*\\* \\(.*\\) )?((.:)?[^:]*):(\\d+)(:(\\d+))?: (.*)$",
|
||||||
|
"file": 2,
|
||||||
|
"line": 4,
|
||||||
|
"column": 6,
|
||||||
|
"message": 7
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"owner": "elixir-warning",
|
||||||
|
"pattern": [
|
||||||
|
{
|
||||||
|
"regexp": "^(warning: (.*))$",
|
||||||
|
"message": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"regexp": "^( )((.:)?[^:]*):(\\d+)(:(\\d+))?$",
|
||||||
|
"file": 2,
|
||||||
|
"line": 4,
|
||||||
|
"column": 6
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -30,7 +30,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1.0.0
|
- uses: actions/checkout@v1.0.0
|
||||||
- uses: actions/setup-elixir@v1.0.0
|
- uses: actions/setup-elixir@v1.1.0
|
||||||
with:
|
with:
|
||||||
otp-version: 22.x
|
otp-version: 22.x
|
||||||
elixir-version: 1.9.x
|
elixir-version: 1.9.x
|
||||||
@@ -53,7 +53,7 @@ jobs:
|
|||||||
elixir: [1.8.x, 1.9.x]
|
elixir: [1.8.x, 1.9.x]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1.0.0
|
- uses: actions/checkout@v1.0.0
|
||||||
- uses: actions/setup-elixir@v1.0.0
|
- uses: actions/setup-elixir@v1.1.0
|
||||||
with:
|
with:
|
||||||
otp-version: ${{matrix.otp}}
|
otp-version: ${{matrix.otp}}
|
||||||
elixir-version: ${{matrix.elixir}}
|
elixir-version: ${{matrix.elixir}}
|
||||||
@@ -82,7 +82,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1.0.0
|
- uses: actions/checkout@v1.0.0
|
||||||
- uses: actions/setup-elixir@v1.0.0
|
- uses: actions/setup-elixir@v1.1.0
|
||||||
with:
|
with:
|
||||||
otp-version: 22.x
|
otp-version: 22.x
|
||||||
elixir-version: 1.9.x
|
elixir-version: 1.9.x
|
||||||
|
|||||||
@@ -33,6 +33,9 @@ async function main() {
|
|||||||
process.env.PATH = `${process.cwd()}/.setup-elixir/elixir/bin:${process.env.PATH}`
|
process.env.PATH = `${process.cwd()}/.setup-elixir/elixir/bin:${process.env.PATH}`
|
||||||
if (installRebar) await exec('mix local.rebar --force')
|
if (installRebar) await exec('mix local.rebar --force')
|
||||||
if (installHex) await exec('mix local.hex --force')
|
if (installHex) await exec('mix local.hex --force')
|
||||||
|
|
||||||
|
const matchersPath = path.join(__dirname, '..', '.github');
|
||||||
|
console.log(`##[add-matcher]${path.join(matchersPath, 'elixir.json')}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkPlatform() {
|
function checkPlatform() {
|
||||||
|
|||||||
Reference in New Issue
Block a user