Skip to content

Commit

Permalink
tinker
Browse files Browse the repository at this point in the history
  • Loading branch information
gkaracha committed Nov 24, 2021
1 parent d6ea806 commit 4263df3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
configuration_file: ["checker-tez.yaml", "checker-fa2.yaml"]
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -38,6 +41,8 @@ jobs:
run: echo "push_flag=--push" >> $GITHUB_ENV
name: Enable push to build cache

- name: Choose configuration file
run: cp ${{ matrix.configuration_file }} checker.yaml
- name: Build dependencies
run: |
earthly --verbose --ci ${{ env.push_flag }} +flextesa
Expand Down Expand Up @@ -77,6 +82,9 @@ jobs:
if-no-files-found: error
e2e:
runs-on: ubuntu-latest
strategy:
matrix:
configuration_file: ["checker-tez.yaml", "checker-fa2.yaml"]
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -101,6 +109,8 @@ jobs:
- name: Install earthly
run: "sudo /bin/sh -c 'wget https://github.com/earthly/earthly/releases/download/v0.5.23/earthly-linux-amd64 -O /usr/local/bin/earthly && chmod +x /usr/local/bin/earthly'"
# Note: Not pushing here to avoid clashing with pushes from the main `build` job
- name: Choose configuration file
run: cp ${{ matrix.configuration_file }} checker.yaml
- name: Run e2e tests
run: earthly --ci --artifact +test-e2e/ e2e-outputs
- uses: actions/[email protected]
Expand Down

0 comments on commit 4263df3

Please sign in to comment.