Skip to content

Commit

Permalink
dump config
Browse files Browse the repository at this point in the history
  • Loading branch information
seanhess committed Dec 11, 2023
1 parent fbdd900 commit 9e5d461
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:

env:
VERSION: $VERSION_PREFIX.$(date +%s)
IMAGE_NAME: $DOCKER_HUB_URL/level2:$VERSION
IMAGE_NAME: $ARTIFACTORY_URL/level2:$VERSION

steps:
- uses: actions/checkout@v3
- name: Docker check
run: docker version
- name: Docker login
run: docker login dkistdc-docker.jfrog.io --username $DOCKER_USERNAME --password $DOCKER_PASSWORD
run: docker login dkistdc-docker.jfrog.io --username $ARTIFACTORY_USER --password $ARTIFACTORY_PASSWORD
- name: Docker Build
run: docker build . --tag $IMAGE_NAME
- name: Docker Push
Expand Down
26 changes: 14 additions & 12 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,17 @@ jobs:
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install dependencies
run: |
cabal update
cabal build --only-dependencies --enable-tests --enable-benchmarks
- name: Build
run: cabal build --enable-tests --enable-benchmarks all
- name: Run tests
run: cabal test all
- name: Check Cache
run: |
ls $HOME/.config/cabal
ls $HOME/.cabal/store
- name: Test
run: cat $HOME/.config/cabal
# - name: Install dependencies
# run: |
# cabal update
# cabal build --only-dependencies --enable-tests --enable-benchmarks
# - name: Build
# run: cabal build --enable-tests --enable-benchmarks all
# - name: Run tests
# run: cabal test all
# - name: Check Cache
# run: |
# ls $HOME/.config/cabal
# ls $HOME/.cabal/store

0 comments on commit 9e5d461

Please sign in to comment.