Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: YoWASP/nextpnr
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 178fa1370606
Choose a base ref
...
head repository: YoWASP/nextpnr
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2307b236cc5a
Choose a head ref
  • 4 commits
  • 8 files changed
  • 2 contributors

Commits on Jul 12, 2020

  1. Copy the full SHA
    9c1ea4d View commit details
  2. Update upstream code

    github-actions[bot] authored and whitequark committed Jul 12, 2020
    Copy the full SHA
    c564bca View commit details

Commits on Jul 19, 2020

  1. Update upstream code

    github-actions[bot] authored and whitequark committed Jul 19, 2020
    Copy the full SHA
    0b58e41 View commit details

Commits on Jul 30, 2020

  1. Update wasmtime.

    whitequark committed Jul 30, 2020
    Copy the full SHA
    2307b23 View commit details
Showing with 9 additions and 9 deletions.
  1. +2 −2 .github/workflows/update.yml
  2. +1 −1 icestorm-src
  3. +1 −1 nextpnr-src
  4. +1 −1 prjtrellis-src
  5. +1 −1 pypi-ecp5/setup.py
  6. +1 −1 pypi-ecp5/yowasp_nextpnr_ecp5/__init__.py
  7. +1 −1 pypi-ice40/setup.py
  8. +1 −1 pypi-ice40/yowasp_nextpnr_ice40/__init__.py
4 changes: 2 additions & 2 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on:
schedule:
- cron: '* * * * 0'
- cron: '0 0 * * 0'
name: Auto-update
jobs:
autoupdate:
@@ -19,7 +19,7 @@ jobs:
- name: Create/update pull request
uses: peter-evans/create-pull-request@v2.8.1
with:
token: ${{ secrets.PUSH_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'Update upstream code'
title: 'Auto-update'
labels: automerge
2 changes: 1 addition & 1 deletion icestorm-src
2 changes: 1 addition & 1 deletion pypi-ecp5/setup.py
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ def long_description():
version=version(),
install_requires=[
"importlib_resources; python_version<'3.9'",
"wasmtime~=0.18.2"
"wasmtime~=0.19.0"
],
packages=["yowasp_nextpnr_ecp5"],
package_data={
2 changes: 1 addition & 1 deletion pypi-ecp5/yowasp_nextpnr_ecp5/__init__.py
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ def _run_wasm_app(wasm_filename, argv):
linker = wasmtime.Linker(store)
wasi = linker.define_wasi(wasmtime.WasiInstance(store,
"wasi_snapshot_preview1", wasi_cfg))
app = linker.instantiate(wasmtime.Module(store,
app = linker.instantiate(wasmtime.Module(store.engine,
importlib_resources.read_binary(__package__, wasm_filename)))
try:
app.exports["_start"]()
2 changes: 1 addition & 1 deletion pypi-ice40/setup.py
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ def long_description():
version=version(),
install_requires=[
"importlib_resources; python_version<'3.9'",
"wasmtime~=0.18.2"
"wasmtime~=0.19.0"
],
packages=["yowasp_nextpnr_ice40"],
package_data={"yowasp_nextpnr_ice40": [
2 changes: 1 addition & 1 deletion pypi-ice40/yowasp_nextpnr_ice40/__init__.py
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ def _run_wasm_app(wasm_filename, argv):
linker = wasmtime.Linker(store)
wasi = linker.define_wasi(wasmtime.WasiInstance(store,
"wasi_snapshot_preview1", wasi_cfg))
app = linker.instantiate(wasmtime.Module(store,
app = linker.instantiate(wasmtime.Module(store.engine,
importlib_resources.read_binary(__package__, wasm_filename)))
try:
app.exports["_start"]()