Fix CI + Use the triggering branch name in the SnoopCompile branch (#3082)
* Use the triggering branch name in the SnoopCompile branch * fix set-env deprecation
This commit is contained in:
parent
2774b155b4
commit
8451b8da0f
6
.github/workflows/SnoopCompile.yml
vendored
6
.github/workflows/SnoopCompile.yml
vendored
@ -41,10 +41,10 @@ jobs:
|
|||||||
|
|
||||||
# TESTCMD
|
# TESTCMD
|
||||||
- name: Default TESTCMD
|
- name: Default TESTCMD
|
||||||
run: echo ::set-env name=TESTCMD::"julia"
|
run: echo "TESTCMD=julia" >> $GITHUB_ENV
|
||||||
- name: Ubuntu TESTCMD
|
- name: Ubuntu TESTCMD
|
||||||
if: startsWith(matrix.os,'ubuntu')
|
if: startsWith(matrix.os,'ubuntu')
|
||||||
run: echo ::set-env name=TESTCMD::"xvfb-run --auto-servernum julia"
|
run: echo "TESTCMD=xvfb-run --auto-servernum julia" >> $GITHUB_ENV
|
||||||
|
|
||||||
# Generate precompile files
|
# Generate precompile files
|
||||||
- name: Generating precompile files
|
- name: Generating precompile files
|
||||||
@ -78,7 +78,7 @@ jobs:
|
|||||||
commit-message: Update precompile_*.jl file
|
commit-message: Update precompile_*.jl file
|
||||||
title: "[AUTO] Update precompiles"
|
title: "[AUTO] Update precompiles"
|
||||||
labels: SnoopCompile
|
labels: SnoopCompile
|
||||||
branch: "SnoopCompile_AutoPR"
|
branch: "Test_SnoopCompile_AutoPR_${{ github.ref }}"
|
||||||
|
|
||||||
|
|
||||||
Skip:
|
Skip:
|
||||||
|
|||||||
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -59,10 +59,10 @@ jobs:
|
|||||||
|
|
||||||
# TESTCMD
|
# TESTCMD
|
||||||
- name: Default TESTCMD
|
- name: Default TESTCMD
|
||||||
run: echo ::set-env name=TESTCMD::"julia"
|
run: echo "TESTCMD=julia" >> $GITHUB_ENV
|
||||||
- name: Ubuntu TESTCMD
|
- name: Ubuntu TESTCMD
|
||||||
if: startsWith(matrix.os,'ubuntu')
|
if: startsWith(matrix.os,'ubuntu')
|
||||||
run: echo ::set-env name=TESTCMD::"xvfb-run --auto-servernum julia"
|
run: echo "TESTCMD=xvfb-run --auto-servernum julia" >> $GITHUB_ENV
|
||||||
|
|
||||||
# Julia Dependencies
|
# Julia Dependencies
|
||||||
- name: Install Julia dependencies
|
- name: Install Julia dependencies
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user