Skip to content

Commit

Permalink
Test native AOT rename
Browse files Browse the repository at this point in the history
  • Loading branch information
mtmk committed Jul 30, 2024
1 parent c26d8cd commit 237a201
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,17 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Check Native AOT
- name: Test Native AOT
shell: bash
run: |
echo ">> Set up for AOT compilation..."
export exe_file=NATS.Jwt.CheckNativeAot
export exe_file=NATS.Jwt.TestNativeAot
export exe_type=ELF
export dotnet_runtime_id=linux-x64
echo ">> Checking OS..."
if [ "${{ matrix.os }}" = "windows-latest" ]; then
export exe_file=NATS.Jwt.CheckNativeAot.exe
export exe_file=NATS.Jwt.TestNativeAot.exe
export exe_type=PE32
export dotnet_runtime_id=win-x64
elif [ "${{ matrix.os }}" = "macos-latest" ]; then
Expand All @@ -89,7 +89,7 @@ jobs:
fi
echo ">> Publishing..."
cd NATS.Jwt.CheckNativeAot
cd NATS.Jwt.TestNativeAot
rm -rf bin obj
dotnet publish -r $dotnet_runtime_id -c Release -o dist | tee output.txt
Expand Down

0 comments on commit 237a201

Please sign in to comment.