fb09e2a1c6
I had to re-run all jobs in the CI workflow at least 10 times in the past 2 days. The problem is that when one jobs fails, all jobs need to re-run, which sometimes results in different jobs failing. It would be great if we could only re-run the jobs that failed, rather than all the jobs in the CI workflow. Going forward, we should focus on improving flaky tests, and speed the jobs which take the longest, but for now this is a good start. Before this change, we were wasting a lot of dev time - 2h in total for my last PR #1476 - but also wasting CI minutes. Some of us were even tempted to ignore CI 😱. This is a very slipper slope, and while it may feel liberating in the short-term, there are many "windmill monsters" down this path - don't do it. Have a look at the CI workflow before this change to see how many failures we had: https://github.com/dagger/dagger/actions/workflows/ci.yml Without looking at the jobs that failed, can you guess which areas are the flakiest and need our attention the most? Integration & Universe are good guesses, and I wish we could see this without digging into the CI workflow - this change does that. There is a lot more that can be improved here, but I didn't want to get too carried away. The biggest improvement that we can make is switch this to Dagger, which has some challenges, but I definitely intend to tackle them because it feels worth it. This is good enough for now. This is a ship & show PR. If all tests pass, this is a straight merge. I am keeping it atomic so that we can revert it if we don't like it. cc @aluzzardi @talentedmrjones @jlongtine @samalba @shykes @grouville Signed-off-by: Gerhard Lazu <gerhard@lazu.co.uk>
104 lines
2.8 KiB
YAML
104 lines
2.8 KiB
YAML
name: "Test Universe"
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
universe:
|
|
name: Universe
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
services:
|
|
localstack:
|
|
image: localstack/localstack:0.12.16
|
|
env:
|
|
SERVICES: s3, ecr
|
|
LOCALSTACK_API_KEY: ${{ secrets.LOCALSTACK_API_KEY }}
|
|
ports:
|
|
- 4566:4566
|
|
- 4571:4571
|
|
- 4510:4510
|
|
options: >-
|
|
--health-cmd "curl -f http://localhost:4566/health"
|
|
--health-start-period 5s
|
|
--health-timeout 5s
|
|
--health-interval 5s
|
|
--health-retries 10
|
|
|
|
steps:
|
|
- name: "Check out"
|
|
uses: actions/checkout@v2
|
|
|
|
- name: "Setup Go"
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.16
|
|
|
|
- name: "Setup KiND"
|
|
uses: helm/kind-action@v1.2.0
|
|
|
|
- name: "Import Dagger private key"
|
|
env:
|
|
DAGGER_AGE_KEY: ${{ secrets.DAGGER_AGE_KEY }}
|
|
run: |
|
|
mkdir -p ~/.config/dagger
|
|
echo "$DAGGER_AGE_KEY" > ~/.config/dagger/keys.txt
|
|
|
|
- name: "Provision Localstack AWS resources"
|
|
env:
|
|
AWS_ACCESS_KEY_ID: test
|
|
AWS_SECRET_ACCESS_KEY: test
|
|
AWS_DEFAULT_REGION: us-east-2
|
|
run: |
|
|
aws --endpoint-url=http://localhost:4566 s3 mb s3://dagger-ci
|
|
aws --endpoint-url=http://localhost:4566 ecr create-repository --repository-name dagger-ci
|
|
|
|
- name: "Expose GitHub Runtime"
|
|
uses: crazy-max/ghaction-github-runtime@v1
|
|
|
|
- name: Test
|
|
# TODO: https://github.com/dagger/dagger/pull/1341
|
|
# env:
|
|
# DAGGER_CACHE_TO: "type=gha,mode=max,scope=test-universe"
|
|
# DAGGER_CACHE_FROM: "type=gha,mode=max,scope=test-universe"
|
|
run: |
|
|
make universe-test
|
|
|
|
universe-europa:
|
|
name: "Universe - Europa"
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
steps:
|
|
- name: "Check out"
|
|
uses: actions/checkout@v2
|
|
|
|
- name: "Set up Go"
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: 1.16
|
|
|
|
- name: "Install SOPS"
|
|
run: |
|
|
sudo curl -L -o /usr/local/bin/sops https://github.com/mozilla/sops/releases/download/v3.7.1/sops-v3.7.1.linux
|
|
sudo chmod +x /usr/local/bin/sops
|
|
|
|
- name: "Import Dagger private key"
|
|
env:
|
|
DAGGER_AGE_KEY: ${{ secrets.DAGGER_AGE_KEY }}
|
|
run: |
|
|
mkdir -p ~/.config/sops/age
|
|
echo "$DAGGER_AGE_KEY" > ~/.config/sops/age/keys.txt
|
|
|
|
- name: "Expose GitHub Runtime"
|
|
uses: crazy-max/ghaction-github-runtime@v1
|
|
|
|
- name: Test
|
|
env:
|
|
DAGGER_CACHE_TO: "type=gha,mode=max,scope=test-universe"
|
|
DAGGER_CACHE_FROM: "type=gha,mode=max,scope=test-universe"
|
|
run: |
|
|
make europa-universe-test
|