Skip to content

Commit

Permalink
Merge pull request #1 from lsst-dm/tickets/DM-45719
Browse files Browse the repository at this point in the history
DM-45719: Add github action to build arm64 as well as x86
  • Loading branch information
roceb authored Aug 14, 2024
2 parents ff4f564 + a5475b7 commit d8dfd64
Show file tree
Hide file tree
Showing 14 changed files with 61 additions and 197 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: ci

on:
push:
branches:
- main
pull_request:

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build and push
uses: lsst-dm/build-and-push@main
id: build
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
platforms: linux/amd64,linux/arm64
image: ${{ github.repository }}
push: true
12 changes: 12 additions & 0 deletions .github/workflows/markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Lint Markdown Files

on:
push:
branches:
- main
pull_request:

jobs:
call-workflow:
uses: lsst/rubin_workflows/.github/workflows/markdownlint.yaml@main
8 changes: 8 additions & 0 deletions .github/workflows/rebase_checker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
name: Check that 'main' is not merged into the development branch

on: pull_request

jobs:
call-workflow:
uses: lsst/rubin_workflows/.github/workflows/rebase_checker.yaml@main
12 changes: 12 additions & 0 deletions .github/workflows/yamllint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: Lint YAML Files

on:
push:
branches:
- main
pull_request:

jobs:
call-workflow:
uses: lsst/rubin_workflows/.github/workflows/yamllint.yaml@main
10 changes: 0 additions & 10 deletions .hadolint.yaml

This file was deleted.

32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .yamllint
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
extends: default
rules:
truthy:
check-keys: false
5 changes: 0 additions & 5 deletions Makefile

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ Usage
---

```sh
docker run -ti lsstsqre/docker-gc
docker run -ti ghcr.io/lsst-dm/docker-docker-gc
```
28 changes: 0 additions & 28 deletions tests/hadolint.sh

This file was deleted.

31 changes: 0 additions & 31 deletions tests/make.sh

This file was deleted.

26 changes: 0 additions & 26 deletions tests/mdl.sh

This file was deleted.

26 changes: 0 additions & 26 deletions tests/shellcheck.sh

This file was deleted.

38 changes: 0 additions & 38 deletions tests/yamllint.sh

This file was deleted.

0 comments on commit d8dfd64

Please sign in to comment.