Skip to content

Commit

Permalink
feat(github-actions): extract deploy & e2e job for deployable flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mildronize committed May 6, 2024
1 parent 3d0a624 commit 7a092dc
Show file tree
Hide file tree
Showing 6 changed files with 65 additions and 41 deletions.
52 changes: 31 additions & 21 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ on:
# paths-ignore:
# - '**/*.md'


env:
pnpm_version: 8
node_version: 20
debug_identifier: nammatham:*

RESOURCE_IDENTIFIER_NODE18_LINUX_X64: ${{ secrets.RESOURCE_IDENTIFIER_NODE18_LINUX_X64 }}
RESOURCE_IDENTIFIER_NODE18_WIN_X64: ${{ secrets.RESOURCE_IDENTIFIER_NODE18_WIN_X64 }}

jobs:
get-matrix:
Expand All @@ -32,7 +34,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{env.node_version }}
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: ${{ env.pnpm_version }}
Expand All @@ -56,11 +58,11 @@ jobs:

- name: Use Node.js ${{ matrix.version }}
if: matrix.runtime == 'node'
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: ${{ env.pnpm_version }}
Expand All @@ -83,7 +85,7 @@ jobs:
path: examples/with-${{ matrix.runtime }}/.nmt/dist
retention-days: 1

e2e:
deploy:
runs-on: ubuntu-latest
needs:
- build
Expand All @@ -94,21 +96,6 @@ jobs:
include: ${{fromJson(needs.get-matrix.outputs.deployable_matrix)}}

steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1

- name: Use Node.js ${{ matrix.version }}
if: matrix.runtime == 'node'
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}

- uses: pnpm/action-setup@v2
name: Install pnpm
with:
version: ${{ env.pnpm_version }}
- run: pnpm install

- name: Azure Login
uses: azure/login@v2
with:
Expand All @@ -126,8 +113,31 @@ jobs:
app-name: nmt-e2e-${{ matrix.target }}-${{ secrets[matrix.resource_identifier_key] }}
package: .

- name: Wait for the deployment to finish
run: sleep 15
e2e:
runs-on: ubuntu-latest
needs:
- build
- deploy
- get-matrix
timeout-minutes: 10
strategy:
matrix:
include: ${{fromJson(needs.get-matrix.outputs.deployable_matrix)}}

steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v1

- name: Use Node.js ${{ env.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}

- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: ${{ env.pnpm_version }}
- run: pnpm install

- name: Run E2E tests
run: pnpm exec nx run @infra/azure-functions:test
Expand Down
13 changes: 10 additions & 3 deletions examples/with-node/nammatham.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
/** @type {import('nammatham').NammathamConfigs} */
const nammathamConfig = {
runtime: 'node',
buildOption: {
target: {
arch: 'x64',
platform: 'linux',
runtime: 'node18',
},
},
hostConfig: {
version: '2.0',
extensionBundle: {
Expand All @@ -28,9 +35,9 @@ const nammathamConfig = {
excludedTypes: 'Request',
},
},
// logLevel: {
// default: 'Trace',
// },
logLevel: {
default: 'Trace',
},
},
},
};
Expand Down
22 changes: 11 additions & 11 deletions infra/azure-functions/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ export const infraConfigs = createInfraConfig(
runtime: 'node18',
isDeployable: true,
},
{
platform: 'win',
arch: 'x64',
runtime: 'node18',
isDeployable: true,
},
{
platform: 'macos',
arch: 'arm64',
runtime: 'node18',
},
// {
// platform: 'win',
// arch: 'x64',
// runtime: 'node18',
// isDeployable: true,
// },
// {
// platform: 'macos',
// arch: 'arm64',
// runtime: 'node18',
// },
// --- Bun ----
// {
// platform: 'linux',
Expand Down
3 changes: 2 additions & 1 deletion infra/azure-functions/src/e2e.test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { test, expect } from 'bun:test';
import supertest from 'supertest';

const url = process.env.AZURE_FUNCTIONS_URL;
const apiKey = process.env.AZURE_FUNCTIONS_API_KEY;
if (!url) throw new Error('AZURE_FUNCTIONS_URL not set');
if (!apiKey) throw new Error('AZURE_FUNCTIONS_API_KEY not set');

test('e2e', async () => {
const response = await fetch(new URL(`/api/SimpleHttpTrigger?code=${apiKey}`, url).toString());
const response = await supertest(url).get(`/api/SimpleHttpTrigger?code=${apiKey}`);
expect(response.status).toBe(200);

Check failure on line 11 in infra/azure-functions/src/e2e.test.ts

View workflow job for this annotation

GitHub Actions / e2e (ubuntu-latest, node, 20, node18-linux-x64, true, RESOURCE_IDENTIFIER_NODE18_LINUX_X64)

error: expect(received).toBe(expected)

Expected: 200 Received: 503 at /home/runner/work/nammatham/nammatham/infra/azure-functions/src/e2e.test.ts:11:3
});
3 changes: 0 additions & 3 deletions infra/azure-functions/src/github-actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@ export function toGithubActionsMatrix(configs: InfraEnvConfig[]): GithubActionsM
*/
const version = runtime === 'node18' ? '20' : 'latest';

if (!config.resourceIdentifier) {
throw new Error('resourceIdentifier is required');
}
return {
os: platform === 'linux' ? 'ubuntu-latest' : platform === 'win' ? 'windows-latest' : 'macos-latest',
runtime: runtime === 'bun' ? 'bun' : 'node',
Expand Down
13 changes: 11 additions & 2 deletions infra/azure-functions/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,17 @@ export function createInfraConfig(
infraConfigs: InfraEnvConfig[]
): InfraEnvConfig[] {
return infraConfigs.map(infraConfig => {
const resourceIdentifier: string =
resourceIdentifiers[toTarget(infraConfig)] ?? fallbackResourceIdentifier(infraConfig);
const resourceIdentifier = resourceIdentifiers[toTarget(infraConfig)];

if (!resourceIdentifier && infraConfig.isDeployable) {
throw new Error(
`resourceIdentifier is required for ${toTarget(
infraConfig
)} due to is cannot be deployed. Please provide RESOURCE_IDENTIFIER_${toTarget(infraConfig)
.replaceAll('-', '_')
.toUpperCase()} in env.`
);
}

return {
...infraConfig,
Expand Down

0 comments on commit 7a092dc

Please sign in to comment.