-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1: Open source! r=mattBrzezinski a=mattBrzezinski Co-authored-by: Nicole Epp <[email protected]> Co-authored-by: Curtis Vogt <[email protected]>
- Loading branch information
Showing
32 changed files
with
2,546 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,71 @@ | ||
name: CI | ||
# Run on master, any tag or any pull request | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- staging | ||
- trying | ||
tags: '*' | ||
schedule: | ||
- cron: '0 2 * * *' # Daily at 2 a.m. UTC | ||
jobs: | ||
test: | ||
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
version: | ||
- "1.0" # LTS | ||
- "1" # Latest release | ||
os: | ||
- ubuntu-latest | ||
- macOS-latest | ||
arch: | ||
- x64 | ||
- x86 | ||
exclude: | ||
- os: macOS-latest | ||
arch: x86 | ||
include: | ||
- os: ubuntu-latest | ||
version: "1.5" | ||
arch: x64 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{ matrix.version }} | ||
arch: ${{ matrix.arch }} | ||
- uses: actions/cache@v2 | ||
env: | ||
cache-name: cache-artifacts | ||
with: | ||
path: ~/.julia/artifacts | ||
key: ${{ runner.os }}-${{ matrix.arch }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | ||
restore-keys: | | ||
${{ runner.os }}-${{ matrix.arch }}-test-${{ env.cache-name }}- | ||
${{ runner.os }}-${{ matrix.arch }}-test- | ||
${{ runner.os }}-${{ matrix.arch }}- | ||
${{ runner.os }}- | ||
- uses: julia-actions/julia-buildpkg@latest | ||
- env: | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
uses: julia-actions/julia-runtest@latest | ||
slack: | ||
name: Notify Slack Failure | ||
needs: test | ||
runs-on: ubuntu-latest | ||
if: always() && github.event_name == 'schedule' | ||
steps: | ||
- uses: technote-space/workflow-conclusion-action@v2 | ||
- uses: voxmedia/github-action-slack-notify-build@v1 | ||
if: env.WORKFLOW_CONCLUSION == 'failure' | ||
with: | ||
channel: nightly-dev | ||
status: FAILED | ||
color: danger | ||
env: | ||
SLACK_BOT_TOKEN: ${{ secrets.DEV_SLACK_BOT_TOKEN }} |
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,16 @@ | ||
name: CompatHelper | ||
on: | ||
schedule: | ||
- cron: '0 0 * * *' # Everyday at midnight | ||
workflow_dispatch: | ||
jobs: | ||
CompatHelper: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Pkg.add("CompatHelper") | ||
run: julia -e 'using Pkg; Pkg.add("CompatHelper")' | ||
- name: CompatHelper.main() | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }} | ||
run: julia -e 'using CompatHelper; CompatHelper.main()' |
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,25 @@ | ||
name: JuliaNightly | ||
# Nightly Scheduled Julia Nightly Run | ||
on: | ||
schedule: | ||
- cron: '0 2 * * *' # Daily at 2 AM UTC (8 PM CST) | ||
jobs: | ||
test: | ||
name: Julia Nightly - Ubuntu - x64 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: nightly | ||
arch: x64 | ||
- uses: actions/cache@v2 | ||
env: | ||
cache-name: julia-nightly-cache-artifacts | ||
with: | ||
path: ~/.julia/artifacts | ||
key: ${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} | ||
restore-keys: | | ||
${{ env.cache-name }}- | ||
- uses: julia-actions/julia-buildpkg@latest | ||
- uses: julia-actions/julia-runtest@latest |
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,15 @@ | ||
name: TagBot | ||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
workflow_dispatch: | ||
jobs: | ||
TagBot: | ||
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: JuliaRegistries/TagBot@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
ssh: ${{ secrets.DOCUMENTER_KEY }} |
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,7 @@ | ||
.DS_Store | ||
*.jl.cov | ||
*.jl.*.cov | ||
*.jl.mem | ||
/docs/build/ | ||
/docs/site/ | ||
/Manifest.toml |
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,32 @@ | ||
name = "AWSBatch" | ||
uuid = "dcae83d4-2881-5875-9d49-e5534165e9c0" | ||
authors = ["Invenia Technical Computing"] | ||
version = "1.4.2" | ||
|
||
[deps] | ||
AWSCore = "4f1ea46c-232b-54a6-9b17-cc2d0f3e6598" | ||
AWSSDK = "0d499d91-6ae5-5d63-9313-12987b87d5ad" | ||
AWSTools = "83bcdc74-1232-581c-948a-f29122bf8259" | ||
AutoHashEquals = "15f4f7f2-30c1-5605-9d31-71845cf9641f" | ||
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" | ||
Memento = "f28f55f0-a522-5efc-85c2-fe41dfb9b2d9" | ||
Mocking = "78c3b35d-d492-501b-9361-3d52fe80e533" | ||
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d" | ||
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" | ||
|
||
[compat] | ||
AWSCore = "0.5.2, 0.6" | ||
AWSSDK = "0.2, 0.3, 0.4, 0.5" | ||
AWSTools = "0.3.1, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1" | ||
AutoHashEquals = "0.2.0" | ||
HTTP = "0.8.1" | ||
Memento = "0.7, 0.8, 0.9, 0.10, 0.11, 0.12, 0.13, 1" | ||
Mocking = "0.7" | ||
julia = "1" | ||
|
||
[extras] | ||
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = ["HTTP", "Test"] |
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,17 @@ | ||
# AWSBatch | ||
|
||
[![Latest](https://img.shields.io/badge/docs-latest-blue.svg)](https://invenia.pages.invenia.ca/AWSBatch.jl/) | ||
[![Build Status](https://gitlab.invenia.ca/invenia/AWSBatch.jl/badges/master/build.svg)](https://gitlab.invenia.ca/invenia/AWSBatch.jl/commits/master) | ||
[![Coverage](https://gitlab.invenia.ca/invenia/AWSBatch.jl/badges/master/coverage.svg)](https://gitlab.invenia.ca/invenia/AWSBatch.jl/commits/master) | ||
|
||
# Running the tests | ||
|
||
To run the online AWS Batch tests you must first set the environmental variables `TESTS` and | ||
`AWS_STACKNAME`. | ||
|
||
```julia | ||
ENV["TESTS"] = "batch" | ||
ENV["AWS_STACKNAME"] = "aws-batch-manager-test" | ||
``` | ||
|
||
To make an `aws-batch-manager-test` compatible stack you can use the CloudFormation template [test/batch.yml](./test/batch.yml). |
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,10 @@ | ||
status = [ | ||
"Julia 1.0 - ubuntu-latest - x64", | ||
"Julia 1.0 - ubuntu-latest - x86", | ||
"Julia 1.0 - macOS-latest - x64", | ||
"Julia 1 - ubuntu-latest - x64", | ||
"Julia 1 - ubuntu-latest - x86", | ||
"Julia 1 - macOS-latest - x64", | ||
"Julia 1.5 - ubuntu-latest - x64", | ||
] | ||
delete-merged-branches = true |
Oops, something went wrong.
8f3209f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
8f3209f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Error while trying to register: "Tag with name
v1.4.2
already exists and points to a different commit"