Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Scientific Software
CrysFML
Commits
a4cf373f
Unverified
Commit
a4cf373f
authored
Jul 16, 2021
by
Simon Ward
Browse files
More win fun
parent
419648a4
Changes
1
Show whitespace changes
Inline
Side-by-side
.github/workflows/build_variants.yml
View file @
a4cf373f
...
...
@@ -6,62 +6,62 @@ on:
branches
:
[
simon
]
jobs
:
create-Linux
:
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Build manylinux wheels
run
:
docker run -e PLAT=manylinux2010_x86_64 -v `pwd`:/io quay.io/pypa/manylinux2010_x86_64 /io/Scripts/buildscript.sh
-
uses
:
actions/upload-artifact@v2
with
:
name
:
CrysFML - Linux
path
:
${{ github.workspace }}/dist/*.whl
create-OSX
:
strategy
:
max-parallel
:
4
matrix
:
python-version
:
[
'
3.6'
,
'
3.7'
,
'
3.8'
,
'
3.9'
]
os
:
[
macos-10.15
]
gcc_v
:
[
10
]
# Version of GFortran we want to use.
# exclude: # Currently only python > 3.8 is supported on macos-11.0 and > 3.6 on macos-10.15
# - os: macos-11.0
# python-version: '3.7'
# - os: macos-11.0
# python-version: '3.8'
runs-on
:
${{ matrix.os }}
steps
:
-
uses
:
actions/checkout@v2
-
name
:
Setup python
uses
:
actions/setup-python@v1
with
:
python-version
:
${{matrix.python-version}}
-
name
:
Install cmake
run
:
pip3 install cmake delocate wheel
-
name
:
Build CFML (OSX)
env
:
FC
:
gfortran-${{ matrix.gcc_v }}
CC
:
gcc-${{ matrix.gcc_v }}
run
:
|
pip3 wheel ./ --no-deps -w ./old/
delocate-wheel -w dist -v ./old/*.whl
-
uses
:
actions/upload-artifact@v2
with
:
name
:
CrysFML - ${{ matrix.os }} - Python ${{ matrix.python-version }}
path
:
./dist/*.whl
#
create-Linux:
#
runs-on: ubuntu-latest
#
#
steps:
#
- uses: actions/checkout@v2
#
#
- name: Build manylinux wheels
#
run: docker run -e PLAT=manylinux2010_x86_64 -v `pwd`:/io quay.io/pypa/manylinux2010_x86_64 /io/Scripts/buildscript.sh
#
#
- uses: actions/upload-artifact@v2
#
with:
#
name: CrysFML - Linux
#
path: ${{ github.workspace }}/dist/*.whl
#
#
create-OSX:
#
strategy:
#
max-parallel: 4
#
matrix:
#
python-version: ['3.6', '3.7', '3.8', '3.9']
#
os: [macos-10.15]
#
gcc_v: [ 10 ] # Version of GFortran we want to use.
#
# exclude: # Currently only python > 3.8 is supported on macos-11.0 and > 3.6 on macos-10.15
#
# - os: macos-11.0
#
# python-version: '3.7'
#
# - os: macos-11.0
#
# python-version: '3.8'
#
#
runs-on: ${{ matrix.os }}
#
#
steps:
#
- uses: actions/checkout@v2
#
#
- name: Setup python
#
uses: actions/setup-python@v1
#
with:
#
python-version: ${{matrix.python-version}}
#
#
- name: Install cmake
#
run: pip3 install cmake delocate wheel
#
#
- name: Build CFML (OSX)
#
env:
#
FC: gfortran-${{ matrix.gcc_v }}
#
CC: gcc-${{ matrix.gcc_v }}
#
run: |
#
pip3 wheel ./ --no-deps -w ./old/
#
delocate-wheel -w dist -v ./old/*.whl
#
#
- uses: actions/upload-artifact@v2
#
with:
#
name: CrysFML - ${{ matrix.os }} - Python ${{ matrix.python-version }}
#
path: ./dist/*.whl
create-Windows
:
strategy
:
max-parallel
:
4
max-parallel
:
1
matrix
:
python-version
:
[
'
3.6'
,
'
3.7'
]
os
:
[
windows-latest
]
...
...
@@ -69,6 +69,10 @@ jobs:
runs-on
:
${{ matrix.os }}
steps
:
-
name
:
switch git-bash shell to msys2 shell by adding msys2 path to PATH front
run
:
echo "C:\msys64\usr\bin" >> $GITHUB_PATH
shell
:
bash
-
uses
:
actions/checkout@v2
-
name
:
Setup python
...
...
@@ -79,16 +83,16 @@ jobs:
-
name
:
Install wheel
run
:
pip install wheel
-
uses
:
msys2/setup-msys2@v2
with
:
msystem
:
MSYS
install
:
cmake mingw-w64-x86_64-toolchain
update
:
true
path-type
:
inherit
#
- uses: msys2/setup-msys2@v2
#
with:
#
msystem: MSYS
#
install: cmake mingw-w64-x86_64-toolchain
#
update: true
#
path-type: inherit
-
name
:
Build CFML
shell
:
msys2 {0}
id
:
build
#
shell: msys2 {0}
#
id: build
run
:
pip wheel ./ --no-deps -w ./dist/
env
:
MINGW_ARCH
:
MINGW64
...
...
@@ -98,22 +102,22 @@ jobs:
name
:
CrysFML - ${{ matrix.os }} - Python ${{ matrix.python-version }}
path
:
./dist/*.whl
Upload_Artifacts
:
runs-on
:
ubuntu-latest
needs
:
[
create-Linux
,
create-OSX
,
create-Windows
]
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
actions/download-artifact@v2
-
name
:
Upload Artifacts GitHub releases
# if: github.event_name == 'push'
uses
:
ncipollo/release-action@v1
with
:
draft
:
falase
prerelease
:
true
allowUpdates
:
true
replacesArtifacts
:
true
token
:
${{ secrets.GITHUB_TOKEN }}
artifacts
:
"
./dist/*.whl"
# tag: ${{ env.BRANCH_NAME }}
# commit: ${{ env.BRANCH_NAME }}
bodyFile
:
"
RELEASE.md"
#
Upload_Artifacts:
#
runs-on: ubuntu-latest
#
needs: [create-Linux, create-OSX, create-Windows]
#
steps:
#
- uses: actions/checkout@v2
#
- uses: actions/download-artifact@v2
#
- name: Upload Artifacts GitHub releases
#
# if: github.event_name == 'push'
#
uses: ncipollo/release-action@v1
#
with:
#
draft: falase
#
prerelease: true
#
allowUpdates: true
#
replacesArtifacts: true
#
token: ${{ secrets.GITHUB_TOKEN }}
#
artifacts: "./dist/*.whl"
#
# tag: ${{ env.BRANCH_NAME }}
#
# commit: ${{ env.BRANCH_NAME }}
#
bodyFile: "RELEASE.md"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment