Skip to content

Commit

Permalink
Environment variable for path in workflow pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Dec 14, 2024
1 parent 302a091 commit d32881a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build_ci_darwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ jobs:
python -m pip install requests py-cpuinfo
python build.py
- name: Set Environment Path
run: |
export N8_PATH=$(pwd)/dist/n8lang
- name: Build verification
run: |
./dist/n8lang/bin/n8
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build_ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ jobs:
python -m pip install requests py-cpuinfo
python build.py
- name: Set Environment Path
run: |
export N8_PATH=$(pwd)/dist/n8lang
- name: Build verification
run: |
./dist/n8lang/bin/n8
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build_ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:
python -m pip install requests py-cpuinfo
python build.py
- name: Set Environment Path
run: |
set N8_PATH=%cd%\dist\n8lang
- name: Build verification
run: |
dist\n8lang\bin\n8
Expand Down

0 comments on commit d32881a

Please sign in to comment.