-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Boudjada Yasser <by.root96@gmail.com>
- Loading branch information
1 parent
722f1eb
commit 9c560f5
Showing
1 changed file
with
11 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,38 @@ | ||
name: Run on MacOS | ||
on: [push] | ||
|
||
#defaults: | ||
# run: | ||
# working-directory: wrdir | ||
jobs: | ||
#deploy: | ||
# runs-on: windows-latest | ||
# steps: | ||
# - name: install readline | ||
# run: python -m pip install readline | ||
build: | ||
runs-on: ${{matrix.os}} | ||
strategy: | ||
matrix: | ||
os: [macos-latest] | ||
os: [macos-latest] #,windows-latest | ||
python-version: [3.7, 3.8, 3.9] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install gettext (macOS) | ||
if: matrix.os == 'macos-latest' | ||
run: brew install gettext | ||
|
||
- name: Set environment variables for gettext (macOS) | ||
if: matrix.os == 'macos-latest' | ||
run: | | ||
echo "PATH=$(brew --prefix gettext)/bin:\$PATH" >> $GITHUB_ENV | ||
echo "LDFLAGS=-L$(brew --prefix gettext)/lib" >> $GITHUB_ENV | ||
echo "CPPFLAGS=-I$(brew --prefix gettext)/include" >> $GITHUB_ENV | ||
shell: bash | ||
|
||
- name: Set up Python ${{matrix.python-version}} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{matrix.python-version}} | ||
# Optional - x64 or x86 architecture, defaults to x64 | ||
architecture: 'x64' | ||
|
||
# You can test your matrix by printing the current Python version | ||
- name: Display Python version | ||
run: python -c "import sys; print(sys.version)" | ||
|
||
- name: Create Workspace Folder | ||
run: mkdir -p wrdir && mkdir -p wrdir/hiphp | ||
|
||
- name: Copy Files & folders to Workspace Folder | ||
run: cp -r hiphp/* wrdir/hiphp && cp main.py wrdir/main.py | ||
|
||
- name: pip Upgrade | ||
run: python -m pip install --upgrade pip | ||
|
||
- name: Install requirements | ||
run: pip install -r requirements.txt | ||
|
||
- name: Test hiphp | ||
run: python wrdir/main.py |