Skip to content

Commit

Permalink
fixed filename of release notes; added specific path to repository ch…
Browse files Browse the repository at this point in the history
…eckout actions
  • Loading branch information
jpswinski committed Oct 16, 2024
1 parent d86b375 commit 40666dd
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 8 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,24 @@ jobs:
uses: actions/checkout@v3
with:
repository: SlideRuleEarth/ut-ATL24-coastnet
path: ut-ATL24-coastnet

- name: Checkout Qtrees
uses: actions/checkout@v3
with:
repository: SlideRuleEarth/ut-ATL24-qtrees
path: ut-ATL24-qtrees

- name: Checkout OpenOceans++
uses: actions/checkout@v3
with:
repository: SlideRuleEarth/ut-ATL24-oopp
path: ut-ATL24-oopp

- name: Checkout SlideRule Repository
- name: Checkout repository
uses: actions/checkout@v3
with:
path: sliderule

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v2
Expand All @@ -41,7 +46,7 @@ jobs:

- name: Upload Cluster Terraform
run: |
cd targets/slideruleearth-aws
cd sliderule/targets/slideruleearth-aws
make cluster-upload-terraform
- name: Set Up Docker Buildx
Expand All @@ -57,12 +62,12 @@ jobs:
- name: Build Cluster Containers
run: |
cd targets/slideruleearth-aws
cd sliderule/targets/slideruleearth-aws
make BUILDX=buildx DOCKER_PLATFORM="--platform linux/arm64" DOCKEROPTS=--load ARCH=aarch64 cluster-docker VERSION=unstable
- name: Push Cluster Containers
run: |
cd targets/slideruleearth-aws
cd sliderule/targets/slideruleearth-aws
make cluster-docker-push VERSION=unstable
# - name: Build AMI
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,24 @@ jobs:
uses: actions/checkout@v3
with:
repository: SlideRuleEarth/ut-ATL24-coastnet
path: ut-ATL24-coastnet

- name: Checkout Qtrees
uses: actions/checkout@v3
with:
repository: SlideRuleEarth/ut-ATL24-qtrees
path: ut-ATL24-qtrees

- name: Checkout OpenOceans++
uses: actions/checkout@v3
with:
repository: SlideRuleEarth/ut-ATL24-oopp
path: ut-ATL24-oopp

- name: Checkout repository
uses: actions/checkout@v3
with:
path: sliderule

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand All @@ -61,7 +66,7 @@ jobs:

# Build SlideRule
- run: |
cd targets/slideruleearth-aws
cd sliderule/targets/slideruleearth-aws
make config-release
make
Expand Down
11 changes: 8 additions & 3 deletions .github/workflows/self_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,27 +33,32 @@ jobs:
uses: actions/checkout@v3
with:
repository: SlideRuleEarth/ut-ATL24-coastnet
path: ut-ATL24-coastnet

- name: Checkout Qtrees
uses: actions/checkout@v3
with:
repository: SlideRuleEarth/ut-ATL24-qtrees
path: ut-ATL24-qtrees

- name: Checkout OpenOceans++
uses: actions/checkout@v3
with:
repository: SlideRuleEarth/ut-ATL24-oopp
path: ut-ATL24-oopp

- name: Checkout sliderule repository
- name: Checkout repository
uses: actions/checkout@v3
with:
path: sliderule

- name: Build sliderule
run: |
cd targets/slideruleearth-aws
cd sliderule/targets/slideruleearth-aws
make config-debug
make
- name: Run test
run: |
cd targets/slideruleearth-aws
cd sliderule/targets/slideruleearth-aws
make selftest TEST=../../scripts/selftests/test_runner.lua

0 comments on commit 40666dd

Please sign in to comment.