Skip to content

Commit

Permalink
OBS-144: Migrate from socorro-release to obs-common
Browse files Browse the repository at this point in the history
and from make to just
  • Loading branch information
relud committed Nov 19, 2024
1 parent fdeb4bb commit 79a2401
Show file tree
Hide file tree
Showing 13 changed files with 431 additions and 1,117 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ jobs:
contents: read
deployments: write
id-token: write
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
# Disable docker compose volume mounts in docker-compose.override.yml
COMPOSE_FILE: docker-compose.yml
steps:
- uses: actions/checkout@v4
- name: Get info
Expand All @@ -36,22 +39,22 @@ jobs:
"$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID" > version.json
- name: Output version.json
run: cat version.json
- name: Install just
run: sudo apt-get update && sudo apt-get install -y just
- name: Build Docker images
run: make build
run: just build
- name: Verify requirements.txt contains correct dependencies
run: |
docker compose run --rm --no-deps test-ci bash ./bin/run_verify_reqs.sh
just verify-reqs
- name: Run lint check
run: |
make .env
docker compose run --rm --no-deps test-ci bash ./bin/run_lint.sh
just lint
- name: Run Eliot tests
run: |
docker compose up -d fakesentry statsd
docker compose run --rm test-ci bash ./bin/run_test.sh eliot
just test
- name: Build docs
run: |
docker compose run --rm --no-deps test-ci bash make -C docs/ html
just docs
- name: Set Docker image tag to "latest" for updates of the main branch
if: github.ref == 'refs/heads/main'
Expand Down
101 changes: 0 additions & 101 deletions Makefile

This file was deleted.

152 changes: 0 additions & 152 deletions bin/license-check.py

This file was deleted.

Loading

0 comments on commit 79a2401

Please sign in to comment.