-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(repo): use new launch template syntax (nrwl#20169)
- Loading branch information
1 parent
000c98c
commit 17990db
Showing
2 changed files
with
49 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,55 @@ | ||
parallelism: 8 | ||
env: | ||
CI: 'true' | ||
GIT_AUTHOR_EMAIL: [email protected] | ||
GIT_AUTHOR_NAME: Test | ||
GIT_COMMITTER_EMAIL: [email protected] | ||
GIT_COMMITTER_NAME: Test | ||
NX_E2E_CI_CACHE_KEY: e2e-circleci-linux | ||
NX_VERBOSE_LOGGING: 'false' | ||
NX_DAEMON: 'true' | ||
NX_PERF_LOGGING: 'false' | ||
NX_NATIVE_LOGGING: 'false' | ||
SELECTED_PM: 'pnpm' | ||
NX_E2E_RUN_E2E: 'true' | ||
NPM_CONFIG_PREFIX: '/home/workflows/.npm-global' | ||
NX_CLOUD_ACCESS_TOKEN: '{{secrets.NX_CLOUD_ACCESS_TOKEN}}' | ||
on: | ||
- events: | ||
- CREATE_RUN_GROUP | ||
steps: | ||
- name: Checkout | ||
uses: 'nrwl/nx-cloud-workflows/v1.1/workflow-steps/checkout/main.yaml' | ||
|
||
- name: Cache restore | ||
uses: 'nrwl/nx-cloud-workflows/v1.1/workflow-steps/cache/main.yaml' | ||
launch-templates: | ||
linux-medium: | ||
env: | ||
KEY: 'pnpm-lock.yaml' | ||
PATHS: | | ||
node_modules | ||
~/.cache/Cypress | ||
~/.pnpm-store | ||
BASE_BRANCH: 'master' | ||
CI: 'true' | ||
GIT_AUTHOR_EMAIL: [email protected] | ||
GIT_AUTHOR_NAME: Test | ||
GIT_COMMITTER_EMAIL: [email protected] | ||
GIT_COMMITTER_NAME: Test | ||
NX_E2E_CI_CACHE_KEY: e2e-circleci-linux | ||
NX_VERBOSE_LOGGING: 'false' | ||
NX_DAEMON: 'true' | ||
NX_PERF_LOGGING: 'false' | ||
NX_NATIVE_LOGGING: 'false' | ||
SELECTED_PM: 'pnpm' | ||
NX_E2E_RUN_E2E: 'true' | ||
NPM_CONFIG_PREFIX: '/home/workflows/.npm-global' | ||
NX_CLOUD_ACCESS_TOKEN: '{{secrets.NX_CLOUD_ACCESS_TOKEN}}' | ||
init-steps: | ||
- name: Checkout | ||
uses: 'nrwl/nx-cloud-workflows/v1.1/workflow-steps/checkout/main.yaml' | ||
|
||
- name: Cache restore | ||
uses: 'nrwl/nx-cloud-workflows/v1.1/workflow-steps/cache/main.yaml' | ||
env: | ||
KEY: 'pnpm-lock.yaml' | ||
PATHS: | | ||
node_modules | ||
~/.cache/Cypress | ||
~/.pnpm-store | ||
BASE_BRANCH: 'master' | ||
|
||
- name: Install Pnpm | ||
script: | | ||
npm install -g @pnpm/[email protected] | ||
- name: Install Pnpm | ||
script: | | ||
npm install -g @pnpm/[email protected] | ||
- name: Pnpm Install | ||
script: | | ||
pnpm install --frozen-lockfile | ||
- name: Pnpm Install | ||
script: | | ||
pnpm install --frozen-lockfile | ||
- name: Install Cypress | ||
script: pnpm exec cypress install | ||
- name: Install Cypress | ||
script: pnpm exec cypress install | ||
|
||
- name: Install Rust | ||
script: | | ||
curl --proto '=https' --tlsv1.3 https://sh.rustup.rs -sSf | sh -s -- -y | ||
source "$HOME/.cargo/env" | ||
rustup toolchain install 1.70.0 | ||
- name: Install Rust | ||
script: | | ||
curl --proto '=https' --tlsv1.3 https://sh.rustup.rs -sSf | sh -s -- -y | ||
source "$HOME/.cargo/env" | ||
rustup toolchain install 1.70.0 | ||
- name: Configure git metadata (needed for lerna smoke tests) | ||
script: | | ||
git config --global user.email [email protected] | ||
git config --global user.name "Test Test" | ||
- name: Configure git metadata (needed for lerna smoke tests) | ||
script: | | ||
git config --global user.email [email protected] | ||
git config --global user.name "Test Test" | ||
- name: Run Agent | ||
script: | | ||
source "$HOME/.cargo/env" | ||
npx nx-cloud start-agent | ||
- name: Load Cargo Env | ||
script: source "$HOME/.cargo/env" |