Skip to content

Commit

Permalink
Merge pull request #82 from daschw/actions
Browse files Browse the repository at this point in the history
update CompileBot and fix tests
  • Loading branch information
daschw authored Apr 1, 2021
2 parents 4d44948 + 9c530e9 commit 16ded40
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 19 deletions.
4 changes: 2 additions & 2 deletions RecipesPipeline/.github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ jobs:
# TESTCMD
- name: Default TESTCMD
run: echo ::set-env name=TESTCMD::"julia"
run: echo "TESTCMD=julia" >> $GITHUB_ENV
- name: Ubuntu TESTCMD
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
- name: Install Julia dependencies
Expand Down
2 changes: 1 addition & 1 deletion RecipesPipeline/.github/workflows/SnoopCompile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
version: # NOTE: the versions below should match those in your botconfig
- '1.5'
- '1'
os: # NOTE: should match the os setting of your botconfig
- ubuntu-latest
arch:
Expand Down
9 changes: 1 addition & 8 deletions RecipesPipeline/deps/SnoopCompile/snoop_bench.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
using CompileBot

snoop_bench(
BotConfig(
"RecipesPipeline",
yml_path= "SnoopCompile.yml",
else_os = "linux",
else_version = "1.5",
)
)
snoop_bench(BotConfig("RecipesPipeline"))
9 changes: 1 addition & 8 deletions RecipesPipeline/deps/SnoopCompile/snoop_bot.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
using CompileBot

snoop_bot(
BotConfig(
"RecipesPipeline",
yml_path= "SnoopCompile.yml",
else_os = "linux",
else_version = "1.5",
)
)
snoop_bot(BotConfig("RecipesPipeline"))

0 comments on commit 16ded40

Please sign in to comment.