-
Notifications
You must be signed in to change notification settings - Fork 3
191 lines (154 loc) · 7.07 KB
/
emscripten.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
name: 'Emscripten'
env:
LIBRARIES_BRANCH: libraries-OS-COMPILER
NCINE_SOURCE_BRANCH: master
DEPLOY_MESSAGE:
"Push artifact from GitHub Actions build ${{ github.run_number }} with id ${{ github.run_id }}
- PACKAGE_NAME artifact from branch 'BRANCH_NAME' with commit id ${{ github.sha }}"
DEPLOY_BRANCH: PACKAGE_NAME-BRANCH_NAME-OS-COMPILER
on: [push, workflow_dispatch]
jobs:
Emscripten:
strategy:
fail-fast: false
matrix:
BuildType: [Debug, Release, BinDist]
runs-on: 'ubuntu-18.04'
steps:
- name: 'Checkout Code'
uses: actions/checkout@v2
- name: 'Install Emscripten SDK'
run: |
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 10
cd ..
git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
./emsdk install latest
./emsdk activate latest
- name: 'Unshallow Git Repository for Versioning'
if: matrix.BuildType == 'BinDist'
run: |
git fetch --unshallow || true
- name: 'Download nCine-libraries and package data'
run: |
export OS=emscripten
export CC=emcc
export BRANCH_NAME=$(git describe --tags --exact-match 2> /dev/null || git symbolic-ref -q --short HEAD || git rev-parse --short HEAD)
export LIBRARIES_BRANCH=`echo $LIBRARIES_BRANCH | sed 's/OS/'"$OS"'/'`
export LIBRARIES_BRANCH=`echo $LIBRARIES_BRANCH | sed 's/COMPILER/'"$CC"'/'`
cd ..
git clone https://github.com/nCine/nCine-libraries-artifacts.git
cd nCine-libraries-artifacts
git checkout $LIBRARIES_BRANCH
LIBRARIES_FILE=$(ls -t | head -n 1) && tar xpzf $LIBRARIES_FILE
mv nCine-external-emscripten ..
cd ..
rm -rf nCine-libraries-artifacts
git clone https://github.com/$GITHUB_REPOSITORY-data.git
# Temporary hack to restore the `data` subdirectory
cd ncJump-data
mkdir data
mv *.png *.json *.ini img data/
- name: 'Download nCine source and data'
run: |
export BRANCH_NAME=$(git describe --tags --exact-match 2> /dev/null || git symbolic-ref -q --short HEAD || git rev-parse --short HEAD)
export NCINE_SOURCE_BRANCH=`echo $NCINE_SOURCE_BRANCH | sed 's/BRANCH_NAME/'"$BRANCH_NAME"'/'`
cd ..
git clone https://github.com/nCine/nCine-data.git
git clone https://github.com/nCine/nCine.git --branch $NCINE_SOURCE_BRANCH
- name: 'CMake Configuration and Make of nCine with docking ImGui'
run: |
source ../emsdk/emsdk_env.sh
cd ../nCine
if [[ "${{ matrix.BuildType }}" == "BinDist" ]]; then
export NCINE_BUILD_TYPE=Release
else
export NCINE_BUILD_TYPE=${{ matrix.BuildType }}
fi
export CMAKE_ARGS="-B ../nCine-build-$NCINE_BUILD_TYPE -D CMAKE_BUILD_TYPE=$NCINE_BUILD_TYPE -D NCINE_DYNAMIC_LIBRARY=OFF -D NCINE_PREFERRED_BACKEND=SDL2 -D IMGUI_VERSION_TAG=docking -D NCINE_BUILD_TESTS=OFF"
emcmake cmake $CMAKE_ARGS
cd ..
make -j2 -C nCine-build-$NCINE_BUILD_TYPE
- name: 'CMake Configuration'
run: |
export PACKAGE_NAME=${GITHUB_REPOSITORY##*/}
source ../emsdk/emsdk_env.sh
if [[ "${{ matrix.BuildType }}" == "BinDist" ]]; then
emcmake cmake -B ../$PACKAGE_NAME-build-${{ matrix.BuildType }} -D PACKAGE_OPTIONS_PRESETS=${{ matrix.BuildType }} -D nCine_DIR=$(pwd)/../nCine-build-Release
else
emcmake cmake -B ../$PACKAGE_NAME-build-${{ matrix.BuildType }} -D CMAKE_BUILD_TYPE=${{ matrix.BuildType }} -D nCine_DIR=$(pwd)/../nCine-build-${{ matrix.BuildType }}
fi
- name: 'Make'
run: |
export PACKAGE_NAME=${GITHUB_REPOSITORY##*/}
make -j2 -C ../$PACKAGE_NAME-build-${{ matrix.BuildType }}
- name: 'Package'
if: matrix.BuildType == 'BinDist'
run: |
export PACKAGE_NAME=${GITHUB_REPOSITORY##*/}
make package -C ../$PACKAGE_NAME-build-${{ matrix.BuildType }}
- name: 'Push Artifacts'
if: matrix.BuildType == 'BinDist'
env:
PUBLIC_REPO_TOKEN: ${{ secrets.PUBLIC_REPO_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
export PACKAGE_NAME=${GITHUB_REPOSITORY##*/}
export BRANCH_NAME=$(git describe --tags --exact-match 2> /dev/null || git symbolic-ref -q --short HEAD || git rev-parse --short HEAD)
export DEPLOY_MESSAGE=`sed 's/PACKAGE_NAME/'"$PACKAGE_NAME"'/' <<< "$DEPLOY_MESSAGE"`
export DEPLOY_MESSAGE=`sed 's/BRANCH_NAME/'"$BRANCH_NAME"'/' <<< "$DEPLOY_MESSAGE"`
export OS=emscripten
export CC=emcc
cd ..
export DEPLOY_BRANCH=`echo $DEPLOY_BRANCH | sed 's/PACKAGE_NAME/'"$PACKAGE_NAME"'/'`
export DEPLOY_BRANCH=`echo $DEPLOY_BRANCH | sed 's/BRANCH_NAME/'"$BRANCH_NAME"'/'`
export DEPLOY_BRANCH=`echo $DEPLOY_BRANCH | sed 's/OS/'"$OS"'/'`
export DEPLOY_BRANCH=`echo $DEPLOY_BRANCH | sed 's/COMPILER/'"$CC"'/'`
git clone https://[email protected]/$GITHUB_REPOSITORY-artifacts.git >/dev/null 2>&1
cd $PACKAGE_NAME-artifacts
git checkout $DEPLOY_BRANCH || git checkout --orphan $DEPLOY_BRANCH
git reset
git clean -f
git rm * || true
mv -f ../$PACKAGE_NAME-build-${{ matrix.BuildType }}/*.tar.gz .
git add *.tar.gz
git commit --amend -m "$DEPLOY_MESSAGE" || git commit -m "$DEPLOY_MESSAGE"
git push --force || git push --set-upstream origin $DEPLOY_BRANCH
- name: 'Deploy'
if: matrix.BuildType == 'BinDist' && github.ref == 'refs/heads/main'
env:
PUBLIC_REPO_TOKEN: ${{ secrets.PUBLIC_REPO_TOKEN }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
export PACKAGE_NAME=${GITHUB_REPOSITORY##*/}
export DEPLOY_MESSAGE=`sed 's/PACKAGE_NAME/'"$PACKAGE_NAME"'/' <<< "$DEPLOY_MESSAGE"`
export DEPLOY_BRANCH=pages
export COMMIT_DATE=`git log -1 --format=%ad --date=short`
export ARR_DATE=(${COMMIT_DATE//-/ })
export MAJOR=${ARR_DATE[0]}
export MINOR=${ARR_DATE[1]}
export REV_COUNT=`git rev-list --count HEAD`
export SHORT_HASH=`git rev-parse --short HEAD`
export PATCH=r${REV_COUNT}-${SHORT_HASH}
export PACKAGE_VERSION=${MAJOR}.${MINOR}.${PATCH}
export TAR_NAME=${PACKAGE_NAME}-${PACKAGE_VERSION}-Emscripten
echo ${TAR_NAME}
cd ..
echo Moving..
mv $PACKAGE_NAME-artifacts/${TAR_NAME}.tar.gz .
echo Extracting..
tar -zxvf ${TAR_NAME}.tar.gz
cd $PACKAGE_NAME-artifacts
git checkout $DEPLOY_BRANCH || git checkout --orphan $DEPLOY_BRANCH
git reset
git clean -f
git rm * || true
echo Committing..
mv ../${TAR_NAME}/bin/* .
mv ncjump.html index.html
git add .
git commit --amend -m "$DEPLOY_MESSAGE" || git commit -m "$DEPLOY_MESSAGE"
echo Pushing..
git push --force || git push --set-upstream origin $DEPLOY_BRANCH