|
17 | 17 |
|
18 | 18 | env: |
19 | 19 | TARGET_VERSION: master |
| 20 | + TARGET_BITBAKE_VERSION: master |
20 | 21 | TARGET_INTEL_VERSION: master |
21 | 22 | WORKING_DIR: /home/runner/work |
22 | 23 | BUILD_DIR: /mnt/build |
|
29 | 30 |
|
30 | 31 | strategy: |
31 | 32 | matrix: |
32 | | - target_machine: [genericx86-64, intel-corei7-64, intel-skylake-64] |
| 33 | + target_machine: [intel-corei7-64, intel-skylake-64] |
33 | 34 | tensorflow_version: [2.19.1] |
34 | 35 | fail-fast: false |
35 | 36 |
|
@@ -70,15 +71,16 @@ jobs: |
70 | 71 | - name: Clone poky, meta-intel, meta-openembedded |
71 | 72 | run: | |
72 | 73 | sudo chown runner /mnt |
73 | | - git clone --depth 1 -b ${TARGET_VERSION} git://git.yoctoproject.org/poky.git |
74 | 74 | git clone --depth 1 -b ${TARGET_INTEL_VERSION} https://git.yoctoproject.org/meta-intel.git |
75 | | - git clone --depth 1 -b ${TARGET_VERSION} git://git.openembedded.org/meta-openembedded |
| 75 | + git clone --depth 1 -b ${TARGET_VERSION} https://github.com/openembedded/openembedded-core.git |
| 76 | + git clone --depth 1 -b ${TARGET_BITBAKE_VERSION} https://github.com/openembedded/bitbake.git |
| 77 | + git clone --depth 1 -b ${TARGET_VERSION} https://github.com/openembedded/meta-openembedded.git |
76 | 78 | working-directory: /home/runner/work |
77 | 79 |
|
78 | 80 | # Run bitbake |
79 | 81 | - name: Bitbake MACHINE=${{ matrix.target_machine }}, TensorFlow-Lite version ${{ matrix.tensorflow_version }} |
80 | 82 | run: | |
81 | | - source ${WORKING_DIR}/poky/oe-init-build-env ${BUILD_DIR} |
| 83 | + source ${WORKING_DIR}/openembedded-core/oe-init-build-env ${BUILD_DIR} |
82 | 84 | bitbake-layers add-layer ${WORKING_DIR}/meta-openembedded/meta-oe/ |
83 | 85 | bitbake-layers add-layer ${WORKING_DIR}/meta-openembedded/meta-python/ |
84 | 86 | bitbake-layers add-layer ${WORKING_DIR}/meta-tensorflow-lite/meta-tensorflow-lite/ |
|
0 commit comments