Skip to content

Commit

Permalink
Merge pull request #32 from usdot-jpo-ode/release_1.4.0
Browse files Browse the repository at this point in the history
Mere release branch into master branch
  • Loading branch information
SaikrishnaBairamoni authored Jul 5, 2023
2 parents 1dfd9ac + 144ba92 commit 3a47c6f
Show file tree
Hide file tree
Showing 11 changed files with 5,862 additions and 93 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Docker build

on:
push:
branches-ignore:
- "develop"
- "master"
- "release/*"
pull_request:

jobs:
asn1_codec:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build
uses: docker/build-push-action@v3
26 changes: 26 additions & 0 deletions .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "DockerHub Build and Push"

on:
push:
branches:
- "develop"
- "master"
- "release/*"
jobs:
dockerhub-asn1_codec:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build
uses: docker/build-push-action@v3
with:
push: true
tags: usdotjpoode/asn1_codec:${{ github.ref_name }}
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ docs/html
/.project
/.settings/language.settings.xml
/sh.exe.stackdump
/asn1c_combined/J2735_201603DA.ASN

.env
.env
settings.json
asn1c_combined/compile.out
asn1c_combined/converter-example
asn1c_combined/converter-example.mk
asn1c_combined/libasncodec.a
1 change: 0 additions & 1 deletion asn1c_combined/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
*.c
*.h
*.asn
*.o
Makefile*

Loading

0 comments on commit 3a47c6f

Please sign in to comment.